mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
python-mnist: init at 0.6
This commit is contained in:
parent
0925c482c8
commit
2f629c1a47
2 changed files with 20 additions and 0 deletions
18
pkgs/development/python-modules/python-mnist/default.nix
Normal file
18
pkgs/development/python-modules/python-mnist/default.nix
Normal file
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -617,6 +617,8 @@ in {
|
||||||
|
|
||||||
python-ldap-test = callPackage ../development/python-modules/python-ldap-test { };
|
python-ldap-test = callPackage ../development/python-modules/python-ldap-test { };
|
||||||
|
|
||||||
|
python-mnist = callPackage ../development/python-modules/python-mnist { };
|
||||||
|
|
||||||
python-igraph = callPackage ../development/python-modules/python-igraph {
|
python-igraph = callPackage ../development/python-modules/python-igraph {
|
||||||
pkgconfig = pkgs.pkgconfig;
|
pkgconfig = pkgs.pkgconfig;
|
||||||
igraph = pkgs.igraph;
|
igraph = pkgs.igraph;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue