default.nix (645B)
1 { 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonPackage rec { 8 pname = "jsonseq"; 9 version = "1.0.0"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "sgillies"; 14 repo = "jsonseq"; 15 tag = version; 16 hash = "sha256-aZu4+MRFrAizskxqMnks9pRXbe/vw4sYt92tRpjfUSg="; 17 }; 18 19 build-system = with python3Packages; [ setuptools ]; 20 21 nativeCheckInputs = with python3Packages; [ pytestCheckHook ]; 22 23 meta = { 24 description = "Python implementation of RFC 7464"; 25 homepage = "https://github.com/sgillies/jsonseq"; 26 license = lib.licenses.mit; 27 maintainers = [ lib.maintainers.sikmir ]; 28 }; 29 }