mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
python.pkgs.regex: move expression
This commit is contained in:
parent
e92a133238
commit
e0caf82ccf
23
pkgs/development/python-modules/regex/default.nix
Normal file
23
pkgs/development/python-modules/regex/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "regex";
|
||||
version = "2016.11.18";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "126ds2b355n3pgl7brshhscpxn14ycs0yznzl8k4akj4sps1i6c6";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Alternative regular expression module, to replace re";
|
||||
homepage = "https://bitbucket.org/mrabarnett/mrab-regex";
|
||||
license = lib.licenses.psfl;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
@ -7000,23 +7000,7 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
regex = buildPythonPackage rec {
|
||||
name = "regex-${version}";
|
||||
version = "2016.11.18";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/r/regex/${name}.tar.gz";
|
||||
sha256 = "126ds2b355n3pgl7brshhscpxn14ycs0yznzl8k4akj4sps1i6c6";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Alternative regular expression module, to replace re";
|
||||
homepage = "https://bitbucket.org/mrabarnett/mrab-regex";
|
||||
license = licenses.psfl;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
};
|
||||
regex = callPackage ../development/python-modules/regex { };
|
||||
|
||||
repoze_lru = buildPythonPackage rec {
|
||||
name = "repoze.lru-0.6";
|
||||
@ -7032,8 +7016,6 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
|
||||
repoze_sphinx_autointerface = buildPythonPackage rec {
|
||||
name = "repoze.sphinx.autointerface-0.7.1";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user