depot/third_party/nixpkgs/pkgs/development/python-modules/prison/default.nix
Default email 3e2acf8aff Project import generated by Copybara.
GitOrigin-RevId: d42cd445dde587e9a993cd9434cb43da07c4c5de
2021-05-20 18:08:51 -05:00

33 lines
586 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
];
checkInputs = [
nose
];
meta = with lib; {
description = "Rison encoder/decoder";
homepage = "https://github.com/betodealmeida/python-rison";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}