tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.wiffi: 1.0.1 -> 1.1.0
Fabian Affolter
4 years ago
d07a9427
9b6078a3
+11
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
wiffi
default.nix
+11
-4
pkgs/development/python-modules/wiffi/default.nix
reviewed
···
7
7
8
8
buildPythonPackage rec {
9
9
pname = "wiffi";
10
10
-
version = "1.0.1";
10
10
+
version = "1.1.0";
11
11
+
format = "setuptools";
12
12
+
11
13
disabled = pythonOlder "3.6";
12
14
13
15
src = fetchFromGitHub {
14
16
owner = "mampfes";
15
17
repo = "python-wiffi";
16
18
rev = version;
17
17
-
sha256 = "1bsx8dcmbkajh7hdgxg6wdnyxz4bfnd45piiy3yzyvszfdyvxw0f";
19
19
+
sha256 = "sha256-uB4M3etW1DCE//V2pcmsLZbORmrL00pbPADMQD5y3CY=";
18
20
};
19
21
20
20
-
propagatedBuildInputs = [ aiohttp ];
22
22
+
propagatedBuildInputs = [
23
23
+
aiohttp
24
24
+
];
21
25
22
26
# Project has no tests
23
27
doCheck = false;
24
24
-
pythonImportsCheck = [ "wiffi" ];
28
28
+
29
29
+
pythonImportsCheck = [
30
30
+
"wiffi"
31
31
+
];
25
32
26
33
meta = with lib; {
27
34
description = "Python module to interface with STALL WIFFI devices";