Files
nixpkgs/pkgs/development/python-modules/mnist/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

42 lines
933 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
isPy27,
lib,
mock,
numpy,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "mnist";
version = "0.2.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "datapythonista";
repo = "mnist";
rev = "${pname}-${version}";
sha256 = "17r37pbxiv5dw857bmg990x836gq6sgww069w3q5jjg9m3xdm7dh";
};
propagatedBuildInputs = [ numpy ] ++ lib.optional isPy27 mock;
nativeCheckInputs = [ pytestCheckHook ];
# disable tests which fail due to socket related errors
disabledTests = [
"test_test_images_has_right_size"
"test_test_labels_has_right_size"
"test_train_images_has_right_size"
"test_train_labels_has_right_size"
];
meta = {
description = "Python utilities to download and parse the MNIST dataset";
homepage = "https://github.com/datapythonista/mnist";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}