mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
22 lines
576 B
Nix
22 lines
576 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, nose, pyparsing, decorator, six, future }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "PyContracts";
|
|
version = "1.8.14";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "03q5m595ysjrc9h57m7prrca6b9l4yrzvdijnzxnhd61p7jzbh49";
|
|
};
|
|
|
|
buildInputs = [ nose ];
|
|
propagatedBuildInputs = [ pyparsing decorator six future ];
|
|
|
|
meta = with lib; {
|
|
description = "Allows to declare constraints on function parameters and return values";
|
|
homepage = "https://pypi.python.org/pypi/PyContracts";
|
|
license = licenses.lgpl2;
|
|
};
|
|
}
|