nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 21 lines 463 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "jsonpointer"; 8 version = "2.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "f09f8deecaaa5aea65b5eb4f67ca4e54e1a61f7a11c75085e360fe6feb6a48bf"; 13 }; 14 15 meta = with lib; { 16 description = "Resolve JSON Pointers in Python"; 17 homepage = "https://github.com/stefankoegl/python-json-pointer"; 18 license = licenses.bsd2; # "Modified BSD license, says pypi" 19 }; 20 21}