nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "python-mnist";
9 version = "0.7";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "a0cced01e83b5b844cff86109280df7a672a8e4e38fc19fa68999a17f8a9fbd8";
15 };
16
17 meta = {
18 homepage = "https://github.com/sorki/python-mnist";
19 description = "Simple MNIST data parser written in Python";
20 license = lib.licenses.bsd3;
21 maintainers = with lib.maintainers; [ cmcdragonkai ];
22 };
23}