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

19 lines
477 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi }:
2018-11-19 01:03:32 +00:00
buildPythonPackage rec {
pname = "python-mnist";
2020-06-06 07:47:28 +01:00
version = "0.7";
2018-11-19 01:03:32 +00:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:28 +01:00
sha256 = "a0cced01e83b5b844cff86109280df7a672a8e4e38fc19fa68999a17f8a9fbd8";
2018-11-19 01:03:32 +00:00
};
meta = with 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 ];
};
}