Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / prison / default.nix
blob941da2bf9afd2d7ea836544e1ea9a161fa8d83bc
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , six
5 , nose
6 }:
8 buildPythonPackage rec {
9   pname = "prison";
10   version = "0.1.2";
12   src = fetchFromGitHub {
13     owner = "betodealmeida";
14     repo = "python-rison";
15     rev = version;
16     sha256 = "14vb468iznf9416z993bbqihywp9ibyslw5vp67wfr200zyxjwak";
17   };
19   propagatedBuildInputs = [
20     six
21   ];
23   checkInputs = [
24     nose
25   ];
27   meta = with lib; {
28     description = "Rison encoder/decoder";
29     homepage = "https://github.com/betodealmeida/python-rison";
30     license = licenses.mit;
31     maintainers = [ maintainers.costrouc ];
32   };