53 lines
949 B
Nix
53 lines
949 B
Nix
{ lib
|
|
, atomicwrites
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fpyutils";
|
|
version = "2.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "frnmst";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-QnsLQq5u5Fhy9DJD/UE46NstSPvmHyDjS4WiubSTmSA=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|