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.
36 lines
928 B
36 lines
928 B
{ lib, buildPythonPackage, fetchFromGitHub, pytest, pytestrunner, pytestcov, pytestflakes, pytestpep8, sphinx, six }: |
|
|
|
buildPythonPackage rec { |
|
pname = "python-utils"; |
|
version = "2.2.0"; |
|
name = pname + "-" + version; |
|
|
|
src = fetchFromGitHub { |
|
owner = "WoLpH"; |
|
repo = "python-utils"; |
|
rev = "v${version}"; |
|
sha256 = "1i3q9frai08nvrcmh4dg4rr0grncm68w2c097z5g1mfwdf9sv7df"; |
|
}; |
|
|
|
checkInputs = [ pytest pytestrunner pytestcov pytestflakes pytestpep8 sphinx ]; |
|
|
|
postPatch = '' |
|
# pytest-runner is only actually required in checkPhase |
|
substituteInPlace setup.py --replace "setup_requires=['pytest-runner']," "" |
|
''; |
|
|
|
# Tests failing |
|
doCheck = false; |
|
|
|
checkPhase = '' |
|
py.test |
|
''; |
|
|
|
propagatedBuildInputs = [ six ]; |
|
|
|
meta = with lib; { |
|
description = "Module with some convenient utilities"; |
|
homepage = "https://github.com/WoLpH/python-utils"; |
|
license = licenses.bsd3; |
|
}; |
|
}
|
|
|