2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
nose,
|
|
|
|
pyparsing,
|
|
|
|
decorator,
|
|
|
|
six,
|
|
|
|
future,
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2024-04-21 15:54:59 +00:00
|
|
|
pname = "pycontracts";
|
2020-05-15 21:57:56 +00:00
|
|
|
version = "1.8.14";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2024-04-21 15:54:59 +00:00
|
|
|
pname = "PyContracts";
|
|
|
|
inherit version;
|
2020-05-15 21:57:56 +00:00
|
|
|
sha256 = "03q5m595ysjrc9h57m7prrca6b9l4yrzvdijnzxnhd61p7jzbh49";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ nose ];
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
pyparsing
|
|
|
|
decorator
|
|
|
|
six
|
|
|
|
future
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Allows to declare constraints on function parameters and return values";
|
|
|
|
homepage = "https://pypi.python.org/pypi/PyContracts";
|
|
|
|
license = licenses.lgpl2;
|
|
|
|
};
|
|
|
|
}
|