fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
31 lines
589 B
Nix
31 lines
589 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
six,
|
|
nose,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "prison";
|
|
version = "0.1.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "betodealmeida";
|
|
repo = "python-rison";
|
|
rev = version;
|
|
hash = "sha256-qor40vUQeTdlO3vwug3GGNX5vkNaF0H7EWlRdsY4bvc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
nativeCheckInputs = [ nose ];
|
|
|
|
meta = with lib; {
|
|
description = "Rison encoder/decoder";
|
|
homepage = "https://github.com/betodealmeida/python-rison";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|