1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 six,
6 nose,
7}:
8
9buildPythonPackage rec {
10 pname = "prison";
11 version = "0.1.3";
12 format = "setuptools";
13
14 src = fetchFromGitHub {
15 owner = "betodealmeida";
16 repo = "python-rison";
17 rev = version;
18 hash = "sha256-qor40vUQeTdlO3vwug3GGNX5vkNaF0H7EWlRdsY4bvc=";
19 };
20
21 propagatedBuildInputs = [ six ];
22
23 nativeCheckInputs = [ nose ];
24
25 meta = with lib; {
26 description = "Rison encoder/decoder";
27 homepage = "https://github.com/betodealmeida/python-rison";
28 license = licenses.mit;
29 maintainers = [ ];
30 };
31}