python3Packages.fpyutils: init at 2.0.0
This commit is contained in:
parent
1998a4243b
commit
c5f430a166
|
@ -0,0 +1,46 @@
|
||||||
|
{ lib
|
||||||
|
, atomicwrites
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "fpyutils";
|
||||||
|
version = "2.0.0";
|
||||||
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "frnmst";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1n15fvd6191ixxsza49fdd8j43hs0agagg8k9v6rc7by1ffqnl2b";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
atomicwrites
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pytestFlagsArray = [ "fpyutils/tests/*.py" ];
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
# Don't run test which requires bash
|
||||||
|
"test_execute_command_live_output"
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "fpyutils" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Collection of useful non-standard Python functions";
|
||||||
|
homepage = "https://github.com/frnmst/fpyutils";
|
||||||
|
license = with licenses; [ gpl3Plus ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2567,6 +2567,8 @@ in {
|
||||||
|
|
||||||
fpylll = callPackage ../development/python-modules/fpylll { };
|
fpylll = callPackage ../development/python-modules/fpylll { };
|
||||||
|
|
||||||
|
fpyutils = callPackage ../development/python-modules/fpyutils { };
|
||||||
|
|
||||||
freebox-api = callPackage ../development/python-modules/freebox-api { };
|
freebox-api = callPackage ../development/python-modules/freebox-api { };
|
||||||
|
|
||||||
freetype-py = callPackage ../development/python-modules/freetype-py { };
|
freetype-py = callPackage ../development/python-modules/freetype-py { };
|
||||||
|
|
Loading…
Reference in New Issue