pythonPackages.should-dsl: init at 2.1.2

This commit is contained in:
Jaakko Luttinen 2018-10-27 14:52:21 +03:00 committed by Maximilian Bosch
parent 8b472e3739
commit 2fe089c870
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "should-dsl";
version = "2.1.2";
src = fetchPypi {
inherit version;
pname = "should_dsl";
sha256 = "0ai30dxgygwzaj9sgdzyfr9p5b7gwc9piq59nzr4xy5x1zcm7xrn";
};
# There are no tests
doCheck = false;
meta = with stdenv.lib; {
description = "Should assertions in Python as clear and readable as possible";
homepage = http://www.should-dsl.info/;
license = licenses.mit;
maintainers = with maintainers; [ jluttine ];
};
}

View File

@ -3843,6 +3843,8 @@ in {
simplegeneric = callPackage ../development/python-modules/simplegeneric { };
should-dsl = callPackage ../development/python-modules/should-dsl { };
simplejson = callPackage ../development/python-modules/simplejson { };
simplekml = callPackage ../development/python-modules/simplekml { };