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

19 lines
487 B
Nix
Raw Normal View History

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