mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
31 lines
717 B
Nix
31 lines
717 B
Nix
{ lib, buildPythonPackage, fetchPypi,
|
|
nose, pytz, six, versiontools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sampledata";
|
|
version = "0.3.7";
|
|
|
|
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"
|
|
'';
|
|
}
|