mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
32 lines
744 B
Nix
32 lines
744 B
Nix
{ lib, buildPythonPackage, fetchPypi,
|
|
nose, pytz, six, versiontools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sampledata";
|
|
version = "0.3.7";
|
|
format = "setuptools";
|
|
|
|
meta = {
|
|
description = "Sample Data generator for Python ";
|
|
homepage = "https://github.com/jespino/sampledata";
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1kx2j49lag30d32zhzsr50gl5b949wa4lcdap2filg0d07picsdh";
|
|
};
|
|
|
|
buildInputs = [ nose versiontools ];
|
|
propagatedBuildInputs = [ pytz six ];
|
|
|
|
# ERROR: test_image_path_from_directory (tests.tests.TestImageHelpers)
|
|
# ERROR: test_image_stream (tests.tests.TestImageHelpers)
|
|
doCheck = false;
|
|
|
|
checkPhase = ''
|
|
nosetests -e "TestImageHelpers"
|
|
'';
|
|
}
|