My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/nose-pattern-exclude/default.nix

23 lines
589 B

{ lib, buildPythonPackage, fetchPypi, nose }:
buildPythonPackage rec {
pname = "nose-pattern-exclude";
version = "0.1.3";
propagatedBuildInputs = [ nose ];
src = fetchPypi {
inherit pname version;
sha256 = "0apzxx8lavsdlxlpaxqw1snx5p7q8v5dfbip6v32f9pj2vyain1i";
};
# There are no tests
doCheck = false;
meta = with lib; {
description = "Exclude specific files and directories from nosetests runs";
homepage = "https://github.com/jakubroztocil/nose-pattern-exclude";
license = licenses.bsd3;
maintainers = with maintainers; [ jluttine ];
};
}