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