depot/third_party/nixpkgs/pkgs/development/python-modules/sleepyq/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

34 lines
658 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
inflection,
requests,
}:
buildPythonPackage rec {
pname = "sleepyq";
version = "0.8.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1bhzrxpzglfw4qbqfzyxr7dmmavzq4pq0h90jh0aa8vdw7iy7g7v";
};
propagatedBuildInputs = [
inflection
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "sleepyq" ];
meta = with lib; {
description = "Python module for SleepIQ API";
homepage = "https://github.com/technicalpickles/sleepyq";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}