tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.pyipma: init at 2.1.5
Fabian Affolter
4 years ago
f09a1ac2
97704396
+38
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
pyipma
default.nix
top-level
python-packages.nix
+36
pkgs/development/python-modules/pyipma/default.nix
···
1
1
+
{ lib
2
2
+
, aiohttp
3
3
+
, buildPythonPackage
4
4
+
, fetchPypi
5
5
+
, geopy
6
6
+
, pythonOlder
7
7
+
}:
8
8
+
9
9
+
buildPythonPackage rec {
10
10
+
pname = "pyipma";
11
11
+
version = "2.1.5";
12
12
+
disabled = pythonOlder "3.7";
13
13
+
14
14
+
# Request for GitHub releases, https://github.com/dgomes/pyipma/issues/10
15
15
+
src = fetchPypi {
16
16
+
inherit pname version;
17
17
+
sha256 = "0hq5dasqpsn64x2sf6a28hdmysygmcdq4in6s08w97jfvwc6xmym";
18
18
+
};
19
19
+
20
20
+
propagatedBuildInputs = [
21
21
+
aiohttp
22
22
+
geopy
23
23
+
];
24
24
+
25
25
+
# Project has no tests included in the PyPI releases
26
26
+
doCheck = false;
27
27
+
28
28
+
pythonImportsCheck = [ "pyipma" ];
29
29
+
30
30
+
meta = with lib; {
31
31
+
description = "Python library to retrieve information from Instituto Português do Mar e Atmosfera";
32
32
+
homepage = "https://github.com/dgomes/pyipma";
33
33
+
license = with licenses; [ mit ];
34
34
+
maintainers = with maintainers; [ fab ];
35
35
+
};
36
36
+
}
+2
pkgs/top-level/python-packages.nix
···
5965
5965
5966
5966
pyintesishome = callPackage ../development/python-modules/pyintesishome { };
5967
5967
5968
5968
+
pyipma = callPackage ../development/python-modules/pyipma { };
5969
5969
+
5968
5970
pyipp = callPackage ../development/python-modules/pyipp { };
5969
5971
5970
5972
pyiqvia = callPackage ../development/python-modules/pyiqvia { };