summary refs log tree commit diff
path: root/pkgs/development/python-modules/warlock/default.nix
blob: bc298b2794df444c9a401221721fb77ef4377106 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv
, buildPythonPackage
, fetchPypi
, six
, jsonpatch
, jsonschema
, jsonpointer
}:

buildPythonPackage rec {
  pname = "warlock";
  version = "1.3.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a093c4d04b42b7907f69086e476a766b7639dca50d95edc83aef6aeab9db2090";
  };

  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;
  };

}