nixpkgs/pkgs/development/python-modules/python-mnist/default.nix

19 lines
487 B
Nix
Raw Normal View History

2018-11-19 01:03:32 +00:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "python-mnist";
2020-06-06 06:47:28 +00:00
version = "0.7";
2018-11-19 01:03:32 +00:00
src = fetchPypi {
inherit pname version;
2020-06-06 06:47:28 +00:00
sha256 = "a0cced01e83b5b844cff86109280df7a672a8e4e38fc19fa68999a17f8a9fbd8";
2018-11-19 01:03:32 +00:00
};
meta = with stdenv.lib; {
homepage = "https://github.com/sorki/python-mnist";
2018-11-19 01:03:32 +00:00
description = "Simple MNIST data parser written in Python";
license = licenses.bsd3;
maintainers = with maintainers; [ cmcdragonkai ];
};
}