fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
23 lines
509 B
Nix
23 lines
509 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-mnist";
|
|
version = "0.7";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a0cced01e83b5b844cff86109280df7a672a8e4e38fc19fa68999a17f8a9fbd8";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/sorki/python-mnist";
|
|
description = "Simple MNIST data parser written in Python";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ cmcdragonkai ];
|
|
};
|
|
}
|