summary refs log tree commit diff
path: root/pkgs/development/python-modules/coreapi
diff options
context:
space:
mode:
authorivegotasthma <ivegotasthma@protonmail.com>2019-08-12 06:23:51 +0200
committerivegotasthma <ivegotasthma@protonmail.com>2019-08-12 06:23:51 +0200
commit4f25a125a7aeee62f0325ade460341a490832244 (patch)
treec90e87a9ffb80e71485aa280e4f65c64cdff5c38 /pkgs/development/python-modules/coreapi
parent1a29857705b9c4c79b740045a0cef06e45674ea2 (diff)
downloadnixpkgs-4f25a125a7aeee62f0325ade460341a490832244.tar
nixpkgs-4f25a125a7aeee62f0325ade460341a490832244.tar.gz
nixpkgs-4f25a125a7aeee62f0325ade460341a490832244.tar.bz2
nixpkgs-4f25a125a7aeee62f0325ade460341a490832244.tar.lz
nixpkgs-4f25a125a7aeee62f0325ade460341a490832244.tar.xz
nixpkgs-4f25a125a7aeee62f0325ade460341a490832244.tar.zst
nixpkgs-4f25a125a7aeee62f0325ade460341a490832244.zip
pythonPackages.coreapi: init at 2.3.3
Diffstat (limited to 'pkgs/development/python-modules/coreapi')
-rw-r--r--pkgs/development/python-modules/coreapi/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/coreapi/default.nix b/pkgs/development/python-modules/coreapi/default.nix
new file mode 100644
index 00000000000..0bbaa0b1b51
--- /dev/null
+++ b/pkgs/development/python-modules/coreapi/default.nix
@@ -0,0 +1,44 @@
+{
+  stdenv,
+  fetchFromGitHub,
+  buildPythonPackage,
+  django,
+  coreschema,
+  itypes,
+  uritemplate,
+  requests,
+  pytest,
+}:
+
+buildPythonPackage rec {
+  pname = "coreapi";
+  version = "2.3.3";
+
+  src = fetchFromGitHub {
+    repo = "python-client";
+    owner = "core-api";
+    rev = version;
+    sha256 = "1c6chm3q3hyn8fmjv23qgc79ai1kr3xvrrkp4clbqkssn10k7mcw";
+  };
+
+  propagatedBuildInputs = [
+    django
+    coreschema
+    itypes
+    uritemplate
+    requests
+  ];
+
+  checkInputs = [ pytest ];
+  checkPhase = ''
+    mv coreapi coreapi.hidden
+    pytest tests
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Python client library for Core API";
+    homepage = https://github.com/core-api/python-client;
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ ivegotasthma ];
+  };
+}