depot/third_party/nixpkgs/pkgs/development/python-modules/inlinestyler/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

62 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch2,
# build system
setuptools,
# dependencies
cssutils,
lxml,
requests,
# tests
ipdb,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "inlinestyler";
version = "0.2.5";
pyproject = true;
src = fetchFromGitHub {
owner = "dlanger";
repo = "inlinestyler";
rev = "refs/tags/${version}";
hash = "sha256-9TKXqW+5SiiNXnHW2lOVh3zhFhodM7a1UB2yXsEuX3I=";
};
patches = [
# https://github.com/dlanger/inlinestyler/pull/33
(fetchpatch2 {
url = "https://github.com/dlanger/inlinestyler/commit/29fc1c256fd8f37c3e2fda34c975f0bcfe72cf9a.patch";
hash = "sha256-35GWrfvXgpy1KAZ/0pdxsiKNTpDku6/ZX3KWfRUGQmc=";
})
];
build-system = [ setuptools ];
dependencies = [
cssutils
lxml
requests
];
pythonImportsCheck = [ "inlinestyler" ];
nativeCheckInputs = [
ipdb
pytestCheckHook
];
meta = with lib; {
description = "Simple CSS inliner for generating HTML email messages";
homepage = "https://github.com/dlanger/inlinestyler";
changelog = "https://github.com/dlanger/inlinestyler/blob/${src.rev}/CHANGELOG";
license = licenses.bsd3;
maintainers = [ ];
};
}