My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/escapism/default.nix

24 lines
515 B

{ pkgs
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "escapism";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "73256bdfb4f22230f0428fc6efecee61cdc4fad531b6f98b849cb9c80711e4ec";
};
# No tests distributed
doCheck = false;
meta = with pkgs.lib; {
description = "Simple, generic API for escaping strings";
homepage = "https://github.com/minrk/escapism";
license = licenses.mit;
maintainers = with maintainers; [ bzizou ];
};
}