depot/third_party/nixpkgs/pkgs/development/python-modules/svg-py/default.nix
Default email 60f07311b9 Project import generated by Copybara.
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
2024-02-06 17:22:34 -08:00

49 lines
955 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, pytestCheckHook
, pythonOlder
, pyyaml
}:
buildPythonPackage rec {
pname = "svg-py";
version = "1.4.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "orsinium-labs";
repo = "svg.py";
rev = "refs/tags/${version}";
hash = "sha256-GbXPDYDq6zlsPJ/PAjR6OvarVrp7x3LGhseyTMwY8Dg=";
};
nativeBuildInputs = [
flit-core
];
nativeCheckInputs = [
pytestCheckHook
pyyaml
];
pythonImportsCheck = [
"svg"
];
disabledTestPaths = [
# Tests need additional files
"tests/test_attributes.py"
];
meta = with lib; {
description = "Type-safe Python library to generate SVG files";
homepage = "https://github.com/orsinium-labs/svg.py";
changelog = "https://github.com/orsinium-labs/svg.py/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}