pythonPackages.sampledata: init at 0.3.7
This commit is contained in:
parent
007313d044
commit
3836ee50e3
31
pkgs/development/python-modules/sampledata/default.nix
Normal file
31
pkgs/development/python-modules/sampledata/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi,
|
||||||
|
nose, pytz, six, versiontools
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "sampledata";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
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"
|
||||||
|
'';
|
||||||
|
}
|
@ -20080,6 +20080,8 @@ in {
|
|||||||
propagatedBuildInputs = [ self.cffi ];
|
propagatedBuildInputs = [ self.cffi ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
sampledata = callPackage ../development/python-modules/sampledata { };
|
||||||
|
|
||||||
scapy = buildPythonPackage rec {
|
scapy = buildPythonPackage rec {
|
||||||
name = "scapy-2.2.0";
|
name = "scapy-2.2.0";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user