summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-mnist/default.nix
blob: ec7d447f36c244f1537086736e8abe98a0b8dc93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  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 ];
  };
}