We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dd2447 commit 5f41abaCopy full SHA for 5f41aba
pkgs/development/python-modules/bitstruct/default.nix
@@ -1,7 +1,7 @@
1
{
2
lib,
3
buildPythonPackage,
4
- fetchPypi,
+ fetchFromGitHub,
5
pytestCheckHook,
6
setuptools,
7
}:
@@ -11,15 +11,17 @@ buildPythonPackage rec {
11
version = "8.21.0";
12
pyproject = true;
13
14
+ src = fetchFromGitHub {
15
+ owner = "eerimoq";
16
+ repo = "bitstruct";
17
+ tag = version;
18
+ hash = "sha256-r2FPfSoW1Za7kglwpPXnWvWwzhAB8fQXiLPmbsi/8Ps=";
19
+ };
20
+
21
build-system = [
22
setuptools
23
];
24
- src = fetchPypi {
- inherit pname version;
- hash = "sha256-/wvklopFyvhojgdfVcyno/6SErBpumflsnsJJqEZSKw=";
- };
-
25
pythonImportsCheck = [ "bitstruct" ];
26
27
nativeCheckInputs = [
0 commit comments