tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.autoflake: 1.4 -> 2.0.1
Martin Weinelt
3 years ago
8733da2a
61922aa8
+8
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
autoflake
default.nix
+8
-2
pkgs/development/python-modules/autoflake/default.nix
···
1
1
{ lib
2
2
, buildPythonPackage
3
3
, fetchPypi
4
4
+
, hatchling
4
5
, pyflakes
5
6
, pytestCheckHook
6
7
}:
7
8
8
9
buildPythonPackage rec {
9
10
pname = "autoflake";
10
10
-
version = "1.4";
11
11
+
version = "2.0.1";
12
12
+
format = "pyproject";
11
13
12
14
src = fetchPypi {
13
15
inherit pname version;
14
14
-
hash = "sha256-YaNTASz/arlMoGKCPR+y9pLErNpRx2/4Oo13kV+6Ueo=";
16
16
+
hash = "sha256-HOUgExt/OWkVJC/pHlciH01CQIUpu+Ouk62v7ShlkeA=";
15
17
};
18
18
+
19
19
+
nativeBuildInputs = [
20
20
+
hatchling
21
21
+
];
16
22
17
23
propagatedBuildInputs = [
18
24
pyflakes