mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
pythonPackages.escapism: 0.0.1 -> 1.0.0 move to python-modules
This commit is contained in:
parent
29d0eec15f
commit
61c83b108d
24
pkgs/development/python-modules/escapism/default.nix
Normal file
24
pkgs/development/python-modules/escapism/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ pkgs
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "escapism";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "5f1cc1fa04a95f5b85b3da194750f8a71846d493ea332f62e8798949f10c9b86";
|
||||
};
|
||||
|
||||
# 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 ];
|
||||
};
|
||||
}
|
@ -2223,25 +2223,7 @@ in {
|
||||
|
||||
enzyme = callPackage ../development/python-modules/enzyme {};
|
||||
|
||||
escapism = buildPythonPackage rec {
|
||||
name = "escapism-${version}";
|
||||
version = "0.0.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/e/escapism/${name}.tar.gz";
|
||||
sha256 = "1yfyxwxb864xrmrrqgp85xgsh4yrrq5mmzvkdg19jwr7rm6sqx9p";
|
||||
};
|
||||
|
||||
# No tests distributed
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Simple, generic API for escaping strings";
|
||||
homepage = "https://github.com/minrk/escapism";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ bzizou ];
|
||||
};
|
||||
};
|
||||
escapism = callPackage ../development/python-modules/escapism { };
|
||||
|
||||
etcd = buildPythonPackage rec {
|
||||
name = "etcd-${version}";
|
||||
|
Loading…
Reference in New Issue
Block a user