summary refs log blame commit diff
path: root/pkgs/development/python-modules/jsonpointer/default.nix
blob: 39249c648f561ac1764716cc08b1f1947ae857e0 (plain) (tree)
1
2
3
4
5
6
7
8
     





                        
                  


                          
                                                                                

    
                    

                                                                    
                                                                


    
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "jsonpointer";
  version = "2.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5a34b698db1eb79ceac454159d3f7c12a451a91f6334a4f638454327b7a89962";
  };

  meta = with lib; {
    description = "Resolve JSON Pointers in Python";
    homepage = "https://github.com/stefankoegl/python-json-pointer";
    license = licenses.bsd2; # "Modified BSD license, says pypi"
  };

}