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 9855f26 commit 05a2eefCopy full SHA for 05a2eef
pkgs/development/python-modules/cardimpose/default.nix
@@ -1,18 +1,20 @@
1
{
2
lib,
3
buildPythonPackage,
4
- fetchPypi,
+ fetchFromGitHub,
5
setuptools,
6
pymupdf,
7
}:
8
buildPythonPackage rec {
9
pname = "cardimpose";
10
- version = "0.2.1";
+ version = "0.2.1-unstable-2024-12-28";
11
pyproject = true;
12
13
- src = fetchPypi {
14
- inherit pname version;
15
- hash = "sha256-7GyLTUzWd9cZ8/k+0FfzKW3H2rKZ3NHqkZkNmiQ+Tec=";
+ src = fetchFromGitHub {
+ owner = "frsche";
+ repo = "cardimpose";
16
+ rev = "eb26a9795e20db3e3dd5b62dbcbbad547cb05a55";
17
+ hash = "sha256-Fel0YOe2D76h+QAon/wxI6EsZhfLca+0ncNi9i888+E=";
18
};
19
20
build-system = [ setuptools ];
0 commit comments