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
python310Packages.ovoenergy: add format
Fabian Affolter
4 years ago
15c873dc
d3d2c44a
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
ovoenergy
default.nix
+6
-2
pkgs/development/python-modules/ovoenergy/default.nix
reviewed
···
9
9
buildPythonPackage rec {
10
10
pname = "ovoenergy";
11
11
version = "1.2.0";
12
12
+
format = "setuptools";
13
13
+
12
14
disabled = pythonOlder "3.7";
13
15
14
16
src = fetchFromGitHub {
15
17
owner = "timmo001";
16
18
repo = pname;
17
19
rev = "v${version}";
18
18
-
sha256 = "sha256-OSK74uvpHuEtWgbLVFrz1NO7lvtHbt690smGQ+GlsOI=";
20
20
+
hash = "sha256-OSK74uvpHuEtWgbLVFrz1NO7lvtHbt690smGQ+GlsOI=";
19
21
};
20
22
21
23
propagatedBuildInputs = [
···
28
26
# Project has no tests
29
27
doCheck = false;
30
28
31
31
-
pythonImportsCheck = [ "ovoenergy" ];
29
29
+
pythonImportsCheck = [
30
30
+
"ovoenergy"
31
31
+
];
32
32
33
33
meta = with lib; {
34
34
description = "Python client for getting data from OVO's API";