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/python-utils/default.nix

45 lines
780 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, six
, pytest-mypy
}:
buildPythonPackage rec {
pname = "python-utils";
version = "3.1.0";
src = fetchFromGitHub {
owner = "WoLpH";
repo = pname;
rev = "v${version}";
sha256 = "sha256-+NgcVIDM9f2OKBpJNWlSyFxEONltPWJSWIu400/5RkQ=
";
};
# disable coverage and linting
postPatch = ''
sed -i '/--cov/d' pytest.ini
sed -i '/--flake8/d' pytest.ini
'';
propagatedBuildInputs = [
six
];
checkInputs = [
pytest-mypy
pytestCheckHook
];
pytestFlagsArray = [
"_python_utils_tests"
];
meta = with lib; {
description = "Module with some convenient utilities";
homepage = "https://github.com/WoLpH/python-utils";
license = licenses.bsd3;
};
}