summary refs log tree commit diff
path: root/pkgs/development/python-modules/jsonschema/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/jsonschema/default.nix')
-rw-r--r--pkgs/development/python-modules/jsonschema/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/jsonschema/default.nix b/pkgs/development/python-modules/jsonschema/default.nix
new file mode 100644
index 000000000000..cd29d7b5d310
--- /dev/null
+++ b/pkgs/development/python-modules/jsonschema/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, buildPythonPackage, fetchPypi, python
+, nose, mock, vcversioner, functools32 }:
+
+buildPythonPackage rec {
+  name = "${pname}-${version}";
+  pname = "jsonschema";
+  version = "2.6.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "00kf3zmpp9ya4sydffpifn0j0mzm342a2vzh82p6r0vh10cg7xbg";
+  };
+
+  buildInputs = [ nose mock vcversioner ];
+  propagatedBuildInputs = [ functools32 ];
+
+  patchPhase = ''
+    substituteInPlace jsonschema/tests/test_jsonschema_test_suite.py \
+      --replace "python" "${python}/bin/${python.executable}"
+  '';
+
+  checkPhase = "nosetests";
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/Julian/jsonschema;
+    description = "An implementation of JSON Schema validation for Python";
+    license = licenses.mit;
+    maintainers = with maintainers; [ domenkozar ];
+  };
+}