diff options
author | Cody Hiar <cody@hiar.ca> | 2022-08-03 13:58:39 -0600 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2022-08-03 13:58:39 -0600 |
commit | c6fdeb049dd14737156a32028d8348ec0461cc16 (patch) | |
tree | d0c421bf41b4044e3a8df712ac949b592b6520ce /nix | |
parent | 863a5b2ad4c00000d3b4ab0e1679d1b7b065c605 (diff) |
Update nixpkgs, flake8-isort -> 4.1.2 to drop testfixtures
Diffstat (limited to 'nix')
-rw-r--r-- | nix/flake8-isort.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nix/flake8-isort.nix b/nix/flake8-isort.nix index 385e4f7..8d87c89 100644 --- a/nix/flake8-isort.nix +++ b/nix/flake8-isort.nix @@ -2,10 +2,10 @@ buildPythonPackage rec { pname = "flake8-isort"; - version = "4.1.1"; + version = "4.1.2"; src = fetchPypi { inherit pname version; - sha256 = "2BQwSrcObliFm8XD4iHi5ucclY5wBSOSAv7hnCT4Jxc="; + sha256 = "Ez+3qCR5ssvbflCg58QccK4TbbjLgjl79kBhOoetb5o="; }; - checkInputs = with python3Packages; [ flake8 isort pytest testfixtures ]; + checkInputs = with python3Packages; [ flake8 isort pytest ]; } |