mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
91107eb3c7
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-jsonpointer/versions
22 lines
472 B
Nix
22 lines
472 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jsonpointer";
|
|
version = "2.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0qjkjy1qlyc1nl3k95wd03ssxac0a717x8889ypgs1cfcj3bm4n1";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Resolve JSON Pointers in Python";
|
|
homepage = "https://github.com/stefankoegl/python-json-pointer";
|
|
license = stdenv.lib.licenses.bsd2; # "Modified BSD license, says pypi"
|
|
};
|
|
|
|
}
|