summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorivegotasthma <ivegotasthma@protonmail.com>2019-08-12 06:23:18 +0200
committerivegotasthma <ivegotasthma@protonmail.com>2019-08-12 06:23:18 +0200
commit1a29857705b9c4c79b740045a0cef06e45674ea2 (patch)
tree3fabb9ea04bab80f9e9c47dcad545cf68730d69f /pkgs/development/python-modules
parent63fa75e34c12a296f2468e533407bca7c726b034 (diff)
downloadnixpkgs-1a29857705b9c4c79b740045a0cef06e45674ea2.tar
nixpkgs-1a29857705b9c4c79b740045a0cef06e45674ea2.tar.gz
nixpkgs-1a29857705b9c4c79b740045a0cef06e45674ea2.tar.bz2
nixpkgs-1a29857705b9c4c79b740045a0cef06e45674ea2.tar.lz
nixpkgs-1a29857705b9c4c79b740045a0cef06e45674ea2.tar.xz
nixpkgs-1a29857705b9c4c79b740045a0cef06e45674ea2.tar.zst
nixpkgs-1a29857705b9c4c79b740045a0cef06e45674ea2.zip
pythonPackages.coreschema: init at 0.0.4
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/coreschema/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/coreschema/default.nix b/pkgs/development/python-modules/coreschema/default.nix
new file mode 100644
index 00000000000..ba836f78a6e
--- /dev/null
+++ b/pkgs/development/python-modules/coreschema/default.nix
@@ -0,0 +1,34 @@
+{
+  stdenv,
+  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 = ''
+    mv coreschema coreschema.hidden
+    pytest tests
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Python client library for Core Schema";
+    homepage = https://github.com/ivegotasthma/python-coreschema;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ ivegotasthma ];
+  };
+}