depot/third_party/nixpkgs/pkgs/development/python-modules/prison/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

33 lines
592 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, six
, nose
}:
buildPythonPackage rec {
pname = "prison";
version = "0.1.3";
src = fetchFromGitHub {
owner = "betodealmeida";
repo = "python-rison";
rev = version;
sha256 = "sha256-qor40vUQeTdlO3vwug3GGNX5vkNaF0H7EWlRdsY4bvc=";
};
propagatedBuildInputs = [
six
];
nativeCheckInputs = [
nose
];
meta = with lib; {
description = "Rison encoder/decoder";
homepage = "https://github.com/betodealmeida/python-rison";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}