9 buildPythonPackage rec {
10 pname = "range-typed-integers";
13 disabled = pythonOlder "3.8";
15 src = fetchFromGitHub {
16 owner = "theCapypara";
17 repo = "range-typed-integers";
19 sha256 = "sha256-4+XdalHq6Q2cBbuYi4x7kmCNQh1MwYf+XlLP9FzzzgE=";
24 nativeBuildInputs = [ setuptools ];
26 checkInputs = [ pytestCheckHook ];
29 description = "A package provides integer types that have a specific range of valid values";
30 homepage = "https://github.com/theCapypara/range-typed-integers";
31 license = [ licenses.mit ];
32 maintainers = with maintainers; [ marius851000 ];