My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/python-mnist/default.nix

18 lines
477 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "python-mnist";
version = "0.7";
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 ];
};
}