summary refs log tree commit diff
path: root/pkgs/development/python-modules/pymaging_png
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-26 11:18:06 -0400
committerFrederik Rietdijk <fridh@fridh.nl>2018-10-27 09:07:22 +0200
commit0ea426c1e81d9acfd8cbe1b562cde6bfc164fb4e (patch)
tree323067e1d0e1c588a442d6631b5813e88f72e8bc /pkgs/development/python-modules/pymaging_png
parentb9e7aa1b2f8e2813a702a86bbf0e05f79a00e430 (diff)
downloadnixpkgs-0ea426c1e81d9acfd8cbe1b562cde6bfc164fb4e.tar
nixpkgs-0ea426c1e81d9acfd8cbe1b562cde6bfc164fb4e.tar.gz
nixpkgs-0ea426c1e81d9acfd8cbe1b562cde6bfc164fb4e.tar.bz2
nixpkgs-0ea426c1e81d9acfd8cbe1b562cde6bfc164fb4e.tar.lz
nixpkgs-0ea426c1e81d9acfd8cbe1b562cde6bfc164fb4e.tar.xz
nixpkgs-0ea426c1e81d9acfd8cbe1b562cde6bfc164fb4e.tar.zst
nixpkgs-0ea426c1e81d9acfd8cbe1b562cde6bfc164fb4e.zip
pythonPackages.pymaging-png: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/pymaging_png')
-rw-r--r--pkgs/development/python-modules/pymaging_png/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pymaging_png/default.nix b/pkgs/development/python-modules/pymaging_png/default.nix
new file mode 100644
index 00000000000..6756f9deee3
--- /dev/null
+++ b/pkgs/development/python-modules/pymaging_png/default.nix
@@ -0,0 +1,27 @@
+{ stdenv
+, buildPythonPackage
+, fetchFromGitHub
+, pymaging
+}:
+
+buildPythonPackage rec {
+  name = "pymaging-png";
+  version = "unstable-2016-11-16";
+
+  src = fetchFromGitHub {
+    owner = "ojii";
+    repo = "pymaging-png";
+    rev = "83d85c44e4b2342818e6c068065e031a9f81bb9f";
+    sha256 = "1mknxvsq0lr1ffm8amzm3w2prn043c6ghqgpxlkw83r988p5fn57";
+  };
+
+  propagatedBuildInputs = [ pymaging ];
+
+  meta = with stdenv.lib; {
+    description = "Pure Python imaging library with Python 2.6, 2.7, 3.1+ support";
+    homepage    = https://github.com/ojii/pymaging-png/;
+    license     = licenses.mit;
+    maintainers = with maintainers; [ mic92 ];
+  };
+
+}