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

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.isoweek: format with nixfmt

+10 -16
+10 -16
pkgs/development/python-modules/isoweek/default.nix
··· 1 - { lib 2 - , fetchPypi 3 - , buildPythonPackage 4 - , setuptools 5 - , unittestCheckHook 6 - , pythonOlder 1 + { 2 + lib, 3 + fetchPypi, 4 + buildPythonPackage, 5 + setuptools, 6 + unittestCheckHook, 7 + pythonOlder, 7 8 }: 8 9 9 10 buildPythonPackage rec { ··· 19 18 hash = "sha256-c/P3usRD4Fo6tFwypyBIsMTybVPYFGLsSxQsdYHT/+g="; 20 19 }; 21 20 22 - build-system = [ 23 - setuptools 24 - ]; 21 + build-system = [ setuptools ]; 25 22 26 - nativeCheckInputs = [ 27 - unittestCheckHook 28 - ]; 23 + nativeCheckInputs = [ unittestCheckHook ]; 29 24 30 - pythonImportsCheck = [ 31 - "isoweek" 32 - ]; 25 + pythonImportsCheck = [ "isoweek" ]; 33 26 34 27 meta = with lib; { 35 28 description = "Module work with ISO weeks"; ··· 33 38 maintainers = with maintainers; [ mrmebelman ]; 34 39 }; 35 40 } 36 -