depot/third_party/nixpkgs/pkgs/development/python-modules/prayer-times-calculator-offline/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

34 lines
862 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
lib,
setuptools,
}:
buildPythonPackage rec {
pname = "prayer-times-calculator-offline";
version = "1.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "cpfair";
repo = "prayer-times-calculator-offline";
rev = "refs/tags/v${version}";
hash = "sha256-sVEdjtwxwGa354YimeaNqjqZ9yEecNXg8kk6Pafvvd4=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "prayer_times_calculator_offline" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/cpfair/prayer-times-calculator-offline/releases/tag/v${version}";
description = "Prayer Times Calculator - Offline";
homepage = "https://github.com/cpfair/prayer-times-calculator-offline";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}