pypy3Packages.tkinter: enable and make no-op (#379087)
[NixPkgs.git] / pkgs / development / python-modules / prison / default.nix
blob5abb41f26910351d3670a7a96220058010a67ced
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   six,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "prison";
12   version = "0.1.3";
13   pyproject = true;
15   src = fetchFromGitHub {
16     owner = "betodealmeida";
17     repo = "python-rison";
18     rev = version;
19     hash = "sha256-qor40vUQeTdlO3vwug3GGNX5vkNaF0H7EWlRdsY4bvc=";
20   };
22   build-system = [ setuptools ];
24   dependencies = [ six ];
26   nativeCheckInputs = [ pytestCheckHook ];
28   meta = with lib; {
29     description = "Rison encoder/decoder";
30     homepage = "https://github.com/betodealmeida/python-rison";
31     license = licenses.mit;
32     maintainers = [ ];
33   };