about summary refs log tree commit diff
path: root/pkgs/development/python-modules/palettable
diff options
context:
space:
mode:
authorAssassinkin <iuns@outlook.fr>2018-07-11 18:21:31 +0100
committerAssassinkin <iuns@outlook.fr>2018-08-01 10:57:14 +0100
commit7487510d04e025da4bbf0e7eb81ee885d9662a46 (patch)
tree5007f4f55583122fc711a8047e0faccc105182c0 /pkgs/development/python-modules/palettable
parentc7c3c1663ffdc209843a53e74f845328af7f42c9 (diff)
pythonPackages.palettable:init at 3.1.1
Diffstat (limited to 'pkgs/development/python-modules/palettable')
-rw-r--r--pkgs/development/python-modules/palettable/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/palettable/default.nix b/pkgs/development/python-modules/palettable/default.nix
new file mode 100644
index 0000000000000..6b2113352b469
--- /dev/null
+++ b/pkgs/development/python-modules/palettable/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, buildPythonPackage, fetchPypi, pytest }:
+
+buildPythonPackage rec {
+  pname = "palettable";
+  version = "3.1.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0685b223a236bb7e2a900ef7a855ccf9a4027361c8acf400f3b350ea51870f80";
+  };
+
+  checkInputs = [ pytest ];
+ 
+  checkPhase = ''
+    pytest 
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A library of color palettes";
+    homepage = https://jiffyclub.github.io/palettable/;
+    license = licenses.mit;
+    maintainers = with maintainers; [ psyanticy ];
+  };
+}
+