We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3cc10cd + a4d7d7f commit b5382a7Copy full SHA for b5382a7
1 file changed
pkgs/development/python-modules/pyhik/default.nix
@@ -7,16 +7,16 @@
7
setuptools,
8
}:
9
10
-buildPythonPackage rec {
+buildPythonPackage (finalAttrs: {
11
pname = "pyhik";
12
- version = "0.4.1";
+ version = "0.4.2";
13
pyproject = true;
14
15
src = fetchFromGitHub {
16
owner = "mezz64";
17
repo = "pyHik";
18
- tag = version;
19
- hash = "sha256-dDUaNeE0wjKsojeezKVWfMBPO+7O5e2QFOHnh3UoFbY=";
+ tag = finalAttrs.version;
+ hash = "sha256-ree2UbGfmz4Xs0aRiAWcOnCEpnrjR11PBmo/hMnbnlI=";
20
};
21
22
build-system = [
@@ -44,4 +44,4 @@ buildPythonPackage rec {
44
license = lib.licenses.mit;
45
maintainers = [ lib.maintainers.jamiemagee ];
46
47
-}
+})
0 commit comments