nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.pyowm: add format

authored by

Fabian Affolter and committed by
GitHub
ff3bfb76 da9c48b2

+11 -3
+11 -3
pkgs/development/python-modules/pyowm/default.nix
··· 11 11 buildPythonPackage rec { 12 12 pname = "pyowm"; 13 13 version = "3.3.0"; 14 + format = "setuptools"; 15 + 14 16 disabled = pythonOlder "3.7"; 15 17 16 18 src = fetchFromGitHub { ··· 28 26 requests 29 27 ]; 30 28 31 - checkInputs = [ pytestCheckHook ]; 29 + checkInputs = [ 30 + pytestCheckHook 31 + ]; 32 32 33 33 # Run only tests which don't require network access 34 - pytestFlagsArray = [ "tests/unit" ]; 34 + pytestFlagsArray = [ 35 + "tests/unit" 36 + ]; 35 37 36 - pythonImportsCheck = [ "pyowm" ]; 38 + pythonImportsCheck = [ 39 + "pyowm" 40 + ]; 37 41 38 42 meta = with lib; { 39 43 description = "Python wrapper around the OpenWeatherMap web API";