depot/third_party/nixpkgs/pkgs/development/python-modules/pysuez/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

52 lines
965 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, regex
, requests
, pythonOlder
}:
buildPythonPackage rec {
pname = "pysuez";
version = "0.2.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ooii";
repo = "pySuez";
rev = "refs/tags/v${version}";
hash = "sha256-Xgd0E/oFO2yyytBjuwr1vDJfKWC0Iw8P6GStCuCni/g=";
};
postPatch = ''
substituteInPlace setup.py \
--replace ", 'datetime'" ""
'';
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
regex
requests
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"pysuez"
];
meta = with lib; {
description = "Module to get water consumption data from Suez";
homepage = "https://github.com/ooii/pySuez";
changelog = "https://github.com/ooii/pySuez/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}