# HG changeset patch # User Marcin Kuzminski # Date 2016-07-30 10:11:10 # Node ID 2f81029adc1825c1a68cdf13aa6ef5610cd4f95d # Parent 985a3d9c995b238d3ea37660f62e6e1feaadc1a1 nix: added required peppercorn lib diff --git a/pkgs/python-packages.nix b/pkgs/python-packages.nix --- a/pkgs/python-packages.nix +++ b/pkgs/python-packages.nix @@ -48,7 +48,7 @@ md5 = "1b01f1f6533a8a11d0d2f2366dec5342"; }; meta = { - license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ]; + license = [ { fullName = "BSD-like (http://repoze.org/license.html)"; } ]; }; }; Fabric = super.buildPythonPackage { @@ -974,6 +974,19 @@ license = [ { fullName = "Expat license"; } pkgs.lib.licenses.mit ]; }; }; + peppercorn = super.buildPythonPackage { + name = "peppercorn-0.5"; + buildInputs = with self; []; + doCheck = false; + propagatedBuildInputs = with self; []; + src = fetchurl { + url = "https://pypi.python.org/packages/45/ec/a62ec317d1324a01567c5221b420742f094f05ee48097e5157d32be3755c/peppercorn-0.5.tar.gz"; + md5 = "f08efbca5790019ab45d76b7244abd40"; + }; + meta = { + license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ]; + }; + }; psutil = super.buildPythonPackage { name = "psutil-2.2.1"; buildInputs = with self; [];