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