ce8bf510af
This commit was automatically generated using update-python-libraries.
27 lines
524 B
Nix
27 lines
524 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "escapism";
|
|
version = "1.1.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-rdEw5IqFuxquo+dPsDH1AzxwVa7bOaMmX5I9X0DD+XQ=";
|
|
};
|
|
|
|
# No tests distributed
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Simple, generic API for escaping strings";
|
|
homepage = "https://github.com/minrk/escapism";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ bzizou ];
|
|
};
|
|
}
|