pythonPackages.pycontracts: Move to own file

This commit is contained in:
Elis Hirwing
2018-03-31 21:11:37 +02:00
committed by Frederik Rietdijk
parent e72e47c666
commit 1c69fccc81
2 changed files with 22 additions and 19 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi
, nose, pyparsing, decorator, six }:
buildPythonPackage rec {
pname = "PyContracts";
version = "1.7.9";
src = fetchPypi {
inherit pname version;
sha256 = "0rdc9pz08885vqkazjc3lyrrghmf3jzxnlsgpn8akl808x1qrfqf";
};
buildInputs = [ nose ];
propagatedBuildInputs = [ pyparsing decorator six ];
meta = with stdenv.lib; {
description = "Allows to declare constraints on function parameters and return values";
homepage = https://pypi.python.org/pypi/PyContracts;
license = licenses.lgpl2;
};
}