depot/third_party/nixpkgs/pkgs/development/python-modules/prison/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

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 = [ ];
};
}