ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / python-mnist / default.nix
blob131c0f2f5acba09782b7835397bc31f7c50a2b52
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "python-mnist";
5   version = "0.7";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "a0cced01e83b5b844cff86109280df7a672a8e4e38fc19fa68999a17f8a9fbd8";
10   };
12   meta = with lib; {
13     homepage = "https://github.com/sorki/python-mnist";
14     description = "Simple MNIST data parser written in Python";
15     license = licenses.bsd3;
16     maintainers = with maintainers; [ cmcdragonkai ];
17   };