1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, six
5, nose
6}:
7
8buildPythonPackage rec {
9 pname = "prison";
10 version = "0.1.3";
11
12 src = fetchFromGitHub {
13 owner = "betodealmeida";
14 repo = "python-rison";
15 rev = version;
16 sha256 = "sha256-qor40vUQeTdlO3vwug3GGNX5vkNaF0H7EWlRdsY4bvc=";
17 };
18
19 propagatedBuildInputs = [
20 six
21 ];
22
23 checkInputs = [
24 nose
25 ];
26
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 };
33}