about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/coreschema/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/coreschema/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/coreschema/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/coreschema/default.nix b/nixpkgs/pkgs/development/python-modules/coreschema/default.nix
new file mode 100644
index 000000000000..d22e7f4ecd91
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/coreschema/default.nix
@@ -0,0 +1,34 @@
+{
+  lib,
+  fetchFromGitHub,
+  buildPythonPackage,
+  jinja2,
+  pytest,
+}:
+
+buildPythonPackage rec {
+  pname = "coreschema";
+  version = "0.0.4";
+
+  src = fetchFromGitHub {
+    repo = "python-coreschema";
+    owner = "core-api";
+    rev = version;
+    sha256 = "027pc753mkgbb3r1v1x7dsdaarq93drx0f79ppvw9pfkcjcq6wb1";
+  };
+
+  propagatedBuildInputs = [ jinja2 ];
+
+  checkInputs = [ pytest ];
+  checkPhase = ''
+    cd ./tests
+    pytest
+  '';
+
+  meta = with lib; {
+    description = "Python client library for Core Schema";
+    homepage = "https://github.com/ivegotasthma/python-coreschema";
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ ];
+  };
+}