depot/third_party/nixpkgs/pkgs/development/python-modules/prison/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

34 lines
645 B
Nix

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