My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/prison/default.nix

33 lines
586 B

{ 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 ];
};
}