Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / nose-pattern-exclude / default.nix
bloba550dc5aee1566b2924980bc1f7da6a0435e339f
1 { lib, buildPythonPackage, fetchPypi, nose }:
3 buildPythonPackage rec {
4   pname = "nose-pattern-exclude";
5   version = "0.1.3";
7   propagatedBuildInputs = [ nose ];
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "0apzxx8lavsdlxlpaxqw1snx5p7q8v5dfbip6v32f9pj2vyain1i";
12   };
14   # There are no tests
15   doCheck = false;
17   meta = with lib; {
18     description = "Exclude specific files and directories from nosetests runs";
19     homepage = "https://github.com/jakubroztocil/nose-pattern-exclude";
20     license = licenses.bsd3;
21     maintainers = with maintainers; [ jluttine ];
22   };