Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sampledata / default.nix
blobae5086fe47b78c6f453d57f74708b86467d584b4
1 { lib, buildPythonPackage, fetchPypi,
2   nose, pytz, six, versiontools
3 }:
5 buildPythonPackage rec {
6   pname = "sampledata";
7   version = "0.3.7";
8   format = "setuptools";
10   meta = {
11     description = "Sample Data generator for Python ";
12     homepage = "https://github.com/jespino/sampledata";
13     license = lib.licenses.bsd3;
14   };
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "1kx2j49lag30d32zhzsr50gl5b949wa4lcdap2filg0d07picsdh";
19   };
21   buildInputs = [ nose versiontools ];
22   propagatedBuildInputs = [ pytz six ];
24 # ERROR: test_image_path_from_directory (tests.tests.TestImageHelpers)
25 # ERROR: test_image_stream (tests.tests.TestImageHelpers)
26   doCheck = false;
28   checkPhase = ''
29     nosetests -e "TestImageHelpers"
30   '';