about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-mnist
diff options
context:
space:
mode:
authorRoger Qiu <roger.qiu@polyhack.io>2018-11-19 12:03:32 +1100
committerRoger Qiu <roger.qiu@polyhack.io>2018-11-19 12:15:35 +1100
commit2f629c1a47e795ec3a41a865ee65433b309e49a2 (patch)
tree69eaeb682eacb84418a99e34b2986da91e6ad04a /pkgs/development/python-modules/python-mnist
parent0925c482c8378e8a6a8724edc6596ea60f90a113 (diff)
python-mnist: init at 0.6
Diffstat (limited to 'pkgs/development/python-modules/python-mnist')
-rw-r--r--pkgs/development/python-modules/python-mnist/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-mnist/default.nix b/pkgs/development/python-modules/python-mnist/default.nix
new file mode 100644
index 0000000000000..67cb4eae25117
--- /dev/null
+++ b/pkgs/development/python-modules/python-mnist/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "python-mnist";
+  version = "0.6";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "5d59a44335eccb4b310efb2ebb76f44e8588a1732cfb4923f4a502b61d8b653a";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/sorki/python-mnist;
+    description = "Simple MNIST data parser written in Python";
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ cmcdragonkai ];
+  };
+}