Skip to content

Commit 18bfedc

Browse files
authored
python3Packages.fickling: 0.1.4 -> 0.1.5, adopt (#466875)
2 parents feeed58 + 25b7809 commit 18bfedc

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

pkgs/development/python-modules/fickling/default.nix

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,36 @@
11
{
22
lib,
3-
astunparse,
43
buildPythonPackage,
5-
distutils,
64
fetchFromGitHub,
7-
flit-core,
5+
hatchling,
86
numpy,
97
pytestCheckHook,
8+
stdlib-list,
109
torch,
1110
torchvision,
12-
stdlib-list,
1311
}:
1412

1513
buildPythonPackage rec {
1614
pname = "fickling";
17-
version = "0.1.4";
15+
version = "0.1.5";
1816
pyproject = true;
1917

2018
src = fetchFromGitHub {
2119
owner = "trailofbits";
2220
repo = "fickling";
2321
tag = "v${version}";
24-
hash = "sha256-EgVtMYPwSVBlw1bmX3qEeUKvEY7Awv6DOB5tgSLG+xQ=";
22+
hash = "sha256-ExyjOTpIkDM2PmHxYUbe8xNhhQChqfUqTtsNR8Z7ZEk=";
2523
};
2624

2725
build-system = [
28-
distutils
29-
flit-core
26+
hatchling
3027
];
3128

3229
dependencies = [
33-
astunparse
3430
stdlib-list
3531
];
3632

37-
pythonRelaxDeps = [ "stdlib_list" ];
33+
pythonRelaxDeps = [ "stdlib-list" ];
3834

3935
optional-dependencies = {
4036
torch = [
@@ -59,6 +55,6 @@ buildPythonPackage rec {
5955
homepage = "https://github.com/trailofbits/fickling";
6056
changelog = "https://github.com/trailofbits/fickling/releases/tag/${src.tag}";
6157
license = lib.licenses.lgpl3Plus;
62-
maintainers = [ ];
58+
maintainers = with lib.maintainers; [ sarahec ];
6359
};
6460
}

0 commit comments

Comments
 (0)