pythonPackages.prison: init at 0.1.2

This commit is contained in:
Chris Ostrouchov 2019-07-18 18:18:20 -04:00 committed by Ariel
parent 0cb3cbfe57
commit 908fb25f58
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, six
, nose
}:
buildPythonPackage rec {
pname = "prison";
version = "0.1.2";
src = fetchFromGitHub {
owner = "betodealmeida";
repo = "python-rison";
rev = version;
sha256 = "14vb468iznf9416z993bbqihywp9ibyslw5vp67wfr200zyxjwak";
};
propagatedBuildInputs = [
six
];
checkInputs = [
nose
];
meta = with lib; {
description = "Rison encoder/decoder";
homepage = https://github.com/betodealmeida/python-rison;
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}

View file

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