tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.cynthion: 0.1.8 -> 0.2.0
Karolis Stasaitis
8 months ago
fd2905b9
ed96ad91
+3
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
cynthion
default.nix
+3
-6
pkgs/development/python-modules/cynthion/default.nix
···
2
lib,
3
fetchFromGitHub,
4
buildPythonPackage,
5
-
pythonOlder,
6
7
# build-system
8
setuptools,
···
28
}:
29
buildPythonPackage rec {
30
pname = "cynthion";
31
-
version = "0.1.8";
32
pyproject = true;
33
-
disabled = pythonOlder "3.8";
34
35
src = fetchFromGitHub {
36
owner = "greatscottgadgets";
37
repo = "cynthion";
38
tag = version;
39
-
hash = "sha256-twkCv47Goob2cO7FeHegvab3asf8fqbY9qg97Vw4ZCo=";
40
};
41
42
sourceRoot = "${src.name}/cynthion/python";
···
75
pythonImportsCheck = [ "cynthion" ];
76
77
meta = {
78
-
changelog = "https://github.com/greatscottgadgets/cynthion/releases/tag/${version}";
79
description = "Python package and utilities for the Great Scott Gadgets Cynthion USB Test Instrument";
80
homepage = "https://github.com/greatscottgadgets/cynthion";
81
license = lib.licenses.bsd3;
82
maintainers = with lib.maintainers; [ carlossless ];
83
-
broken = lib.versionAtLeast amaranth.version "0.5";
84
};
85
}
···
2
lib,
3
fetchFromGitHub,
4
buildPythonPackage,
0
5
6
# build-system
7
setuptools,
···
27
}:
28
buildPythonPackage rec {
29
pname = "cynthion";
30
+
version = "0.2.0";
31
pyproject = true;
0
32
33
src = fetchFromGitHub {
34
owner = "greatscottgadgets";
35
repo = "cynthion";
36
tag = version;
37
+
hash = "sha256-rbvw2eieZwTxStwCRuvIx/f4vdPsOFnV/U80Ga+fNPA=";
38
};
39
40
sourceRoot = "${src.name}/cynthion/python";
···
73
pythonImportsCheck = [ "cynthion" ];
74
75
meta = {
76
+
changelog = "https://github.com/greatscottgadgets/cynthion/releases/tag/${src.tag}";
77
description = "Python package and utilities for the Great Scott Gadgets Cynthion USB Test Instrument";
78
homepage = "https://github.com/greatscottgadgets/cynthion";
79
license = lib.licenses.bsd3;
80
maintainers = with lib.maintainers; [ carlossless ];
0
81
};
82
}