pythonPackages.preggy: init at 1.4.2

This commit is contained in:
Jaakko Luttinen 2018-10-27 19:04:03 +03:00 committed by Maximilian Bosch
parent 866be59b20
commit c6bd5294aa
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchPypi, six, unidecode, nose, yanc }:
buildPythonPackage rec {
pname = "preggy";
version = "1.4.2";
propagatedBuildInputs = [ six unidecode ];
checkInputs = [ nose yanc ];
src = fetchPypi {
inherit pname version;
sha256 = "0g4ifjh01dkmdzs4621ahk8hpkngid1xxhl51jvzy4h4li4590hw";
};
checkPhase = ''
nosetests .
'';
meta = with stdenv.lib; {
description = "Assertion library for Python";
homepage = http://heynemann.github.io/preggy/;
license = licenses.mit;
maintainers = with maintainers; [ jluttine ];
};
}

View file

@ -4847,6 +4847,8 @@ in {
packaging = callPackage ../development/python-modules/packaging { };
preggy = callPackage ../development/python-modules/preggy { };
pytoml = callPackage ../development/python-modules/pytoml { };
pypandoc = callPackage ../development/python-modules/pypandoc { };