|
34 | 34 | bootstrapped-pip = callPackage ../development/python-modules/bootstrapped-pip { };
|
35 | 35 |
|
36 | 36 | mkPythonDerivation = makeOverridable( callPackage ../development/interpreters/python/mk-python-derivation.nix {
|
| 37 | + distutils-cfg = callPackage ../development/python-modules/distutils-cfg { }; |
37 | 38 | });
|
38 | 39 |
|
39 | 40 | # Derivations built with `buildPythonPackage` can already be overriden with `override`, `overrideAttrs`, and `overrideDerivation`.
|
@@ -6997,27 +6998,7 @@ in {
|
6997 | 6998 | };
|
6998 | 6999 | };
|
6999 | 7000 |
|
7000 |
| - logfury = buildPythonPackage rec { |
7001 |
| - name = "logfury-${version}"; |
7002 |
| - version = "0.1.2"; |
7003 |
| - |
7004 |
| - src = pkgs.fetchurl { |
7005 |
| - url = "mirror://pypi/l/logfury/${name}.tar.gz"; |
7006 |
| - sha256 = "1lywirv3d1lw691mc4mfpz7ak6r49klri43bbfgdnvsfppxminj2"; |
7007 |
| - }; |
7008 |
| - |
7009 |
| - buildInputs = |
7010 |
| - [ self.funcsigs |
7011 |
| - self.six |
7012 |
| - ]; |
7013 |
| - |
7014 |
| - meta = with pkgs.stdenv.lib; { |
7015 |
| - description = "Logfury is for python library maintainers. It allows for responsible, low-boilerplate logging of method calls."; |
7016 |
| - homepage = "https://github.com/ppolewicz/logfury"; |
7017 |
| - license = licenses.bsd3; |
7018 |
| - maintainers = with maintainers; [ jwiegley ]; |
7019 |
| - }; |
7020 |
| - }; |
| 7001 | + logfury = callPackage ../development/python-modules/logfury { }; |
7021 | 7002 |
|
7022 | 7003 | ndg-httpsclient = buildPythonPackage rec {
|
7023 | 7004 | version = "0.4.2";
|
@@ -15763,22 +15744,7 @@ in {
|
15763 | 15744 |
|
15764 | 15745 | pbr = callPackage ../development/python-modules/pbr { };
|
15765 | 15746 |
|
15766 |
| - fixtures = buildPythonPackage rec { |
15767 |
| - name = "fixtures-1.4.0"; |
15768 |
| - |
15769 |
| - src = pkgs.fetchurl { |
15770 |
| - url = "mirror://pypi/f/fixtures/${name}.tar.gz"; |
15771 |
| - sha256 = "0djxvdwm8s60dbfn7bhf40x6g818p3b3mlwijm1c3bqg7msn271y"; |
15772 |
| - }; |
15773 |
| - |
15774 |
| - buildInputs = with self; [ pbr testtools mock ]; |
15775 |
| - |
15776 |
| - meta = { |
15777 |
| - description = "Reusable state for writing clean tests and more"; |
15778 |
| - homepage = "https://pypi.python.org/pypi/fixtures"; |
15779 |
| - license = licenses.asl20; |
15780 |
| - }; |
15781 |
| - }; |
| 15747 | + fixtures = callPackage ../development/python-modules/fixtures { }; |
15782 | 15748 |
|
15783 | 15749 | pelican = callPackage ../development/python-modules/pelican {
|
15784 | 15750 | inherit (pkgs) glibcLocales pandoc git;
|
@@ -19282,31 +19248,7 @@ in {
|
19282 | 19248 | };
|
19283 | 19249 |
|
19284 | 19250 |
|
19285 |
| - restview = buildPythonPackage rec { |
19286 |
| - name = "restview-${version}"; |
19287 |
| - version = "2.5.2"; |
19288 |
| - |
19289 |
| - src = pkgs.fetchurl { |
19290 |
| - url = "mirror://pypi/r/restview/${name}.tar.gz"; |
19291 |
| - sha256 = "0gmdmnlhiy6lagi17maiz312374hk6g6x90fhjwnbrwxif4r9bd5"; |
19292 |
| - }; |
19293 |
| - |
19294 |
| - propagatedBuildInputs = with self; [ docutils readme pygments ]; |
19295 |
| - buildInputs = with self; [ mock ]; |
19296 |
| - |
19297 |
| - patchPhase = '' |
19298 |
| - # dict order breaking tests |
19299 |
| - sed -i 's@<a href="http://www.example.com" rel="nofollow">@...@' src/restview/tests.py |
19300 |
| - ''; |
19301 |
| - |
19302 |
| - meta = { |
19303 |
| - description = "ReStructuredText viewer"; |
19304 |
| - homepage = http://mg.pov.lt/restview/; |
19305 |
| - license = licenses.gpl2; |
19306 |
| - platforms = platforms.all; |
19307 |
| - maintainers = with maintainers; [ koral ]; |
19308 |
| - }; |
19309 |
| - }; |
| 19251 | + restview = callPackage ../development/python-modules/restview { }; |
19310 | 19252 |
|
19311 | 19253 | readme = buildPythonPackage rec {
|
19312 | 19254 | name = "readme-${version}";
|
@@ -19335,6 +19277,8 @@ in {
|
19335 | 19277 | };
|
19336 | 19278 | };
|
19337 | 19279 |
|
| 19280 | + readme_renderer = callPackage ../development/python-modules/readme_renderer { }; |
| 19281 | + |
19338 | 19282 | rjsmin = callPackage ../development/python-modules/rjsmin { };
|
19339 | 19283 |
|
19340 | 19284 | pysolr = buildPythonPackage rec {
|
@@ -19421,27 +19365,7 @@ in {
|
19421 | 19365 | };
|
19422 | 19366 | };
|
19423 | 19367 |
|
19424 |
| - django-multiselectfield = buildPythonPackage rec { |
19425 |
| - name = "django-multiselectfield-${version}"; |
19426 |
| - version = "0.1.3"; |
19427 |
| - |
19428 |
| - src = pkgs.fetchurl { |
19429 |
| - url = "mirror://pypi/d/django-multiselectfield/django-multiselectfield-${version}.tar.gz"; |
19430 |
| - sha256 = "0v7wf82f8688srdsym9ajv1j54bxfxwvydypc03f8xyl4c1raziv"; |
19431 |
| - }; |
19432 |
| - |
19433 |
| - propagatedBuildInputs = with self; [ |
19434 |
| - |
19435 |
| - ]; |
19436 |
| - buildInputs = with self; [ |
19437 |
| - |
19438 |
| - ]; |
19439 |
| - |
19440 |
| - meta = with stdenv.lib; { |
19441 |
| - description = "django-multiselectfield"; |
19442 |
| - homepage = "https://github.com/goinnn/django-multiselectfield"; |
19443 |
| - }; |
19444 |
| - }; |
| 19368 | + django-multiselectfield = callPackage ../development/python-modules/django-multiselectfield { }; |
19445 | 19369 |
|
19446 | 19370 | reviewboard = buildPythonPackage rec {
|
19447 | 19371 | name = "ReviewBoard-2.5.1.1";
|
|
0 commit comments