Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / nose-pattern-exclude / default.nix
blobcb0ef287cef142a5525db40a471d18b9b2cb1f54
1 { lib, buildPythonPackage, fetchPypi, nose }:
3 buildPythonPackage rec {
4   pname = "nose-pattern-exclude";
5   version = "0.1.3";
6   format = "setuptools";
8   propagatedBuildInputs = [ nose ];
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "0apzxx8lavsdlxlpaxqw1snx5p7q8v5dfbip6v32f9pj2vyain1i";
13   };
15   # There are no tests
16   doCheck = false;
18   meta = with lib; {
19     description = "Exclude specific files and directories from nosetests runs";
20     homepage = "https://github.com/jakubroztocil/nose-pattern-exclude";
21     license = licenses.bsd3;
22     maintainers = with maintainers; [ jluttine ];
23   };