a8a11ab31c
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-warlock/versions
28 lines
545 B
Nix
28 lines
545 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
, jsonpatch
|
|
, jsonschema
|
|
, jsonpointer
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "warlock";
|
|
version = "1.3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "01kajxvjp5n1p42n1kvv7rfcj2yyr44zmmzk48pywryfixr3yh6p";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six jsonpatch jsonschema jsonpointer ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/bcwaldon/warlock;
|
|
description = "Python object model built on JSON schema and JSON patch";
|
|
license = licenses.asl20;
|
|
};
|
|
|
|
}
|