treewide: use pythonPackages.python-dateutil instead of pythonPackages.dateutil

This commit is contained in:
Robert Schütz 2021-07-03 13:37:24 +02:00
parent d364e06e4b
commit 1ec5651913
117 changed files with 205 additions and 205 deletions

View file

@ -439,7 +439,7 @@ The following example shows which arguments are given to `buildPythonPackage` in
order to build [`datashape`](https://github.com/blaze/datashape). order to build [`datashape`](https://github.com/blaze/datashape).
```nix ```nix
{ lib, buildPythonPackage, fetchPypi, numpy, multipledispatch, dateutil, pytest }: { lib, buildPythonPackage, fetchPypi, numpy, multipledispatch, python-dateutil, pytest }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "datashape"; pname = "datashape";
@ -451,7 +451,7 @@ buildPythonPackage rec {
}; };
checkInputs = [ pytest ]; checkInputs = [ pytest ];
propagatedBuildInputs = [ numpy multipledispatch dateutil ]; propagatedBuildInputs = [ numpy multipledispatch python-dateutil ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/ContinuumIO/datashape"; homepage = "https://github.com/ContinuumIO/datashape";
@ -463,7 +463,7 @@ buildPythonPackage rec {
``` ```
We can see several runtime dependencies, `numpy`, `multipledispatch`, and We can see several runtime dependencies, `numpy`, `multipledispatch`, and
`dateutil`. Furthermore, we have one `checkInputs`, i.e. `pytest`. `pytest` is a `python-dateutil`. Furthermore, we have one `checkInputs`, i.e. `pytest`. `pytest` is a
test runner and is only used during the `checkPhase` and is therefore not added test runner and is only used during the `checkPhase` and is therefore not added
to `propagatedBuildInputs`. to `propagatedBuildInputs`.

View file

@ -40,7 +40,7 @@ pythonPackages.buildPythonApplication rec {
propagatedBuildInputs = with pythonPackages; [ propagatedBuildInputs = with pythonPackages; [
chromaprint chromaprint
dateutil python-dateutil
discid discid
fasteners fasteners
mutagen mutagen

View file

@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
buildInputs = [ flex bison zlib proj gdal libtiff libpng fftw sqlite cairo proj buildInputs = [ flex bison zlib proj gdal libtiff libpng fftw sqlite cairo proj
readline ffmpeg_3 makeWrapper wxGTK30 netcdf geos postgresql libmysqlclient blas readline ffmpeg_3 makeWrapper wxGTK30 netcdf geos postgresql libmysqlclient blas
libLAS proj-datumgrid ] libLAS proj-datumgrid ]
++ (with python2Packages; [ python dateutil wxPython30 numpy ]); ++ (with python2Packages; [ python python-dateutil wxPython30 numpy ]);
# On Darwin the installer tries to symlink the help files into a system # On Darwin the installer tries to symlink the help files into a system
# directory # directory

View file

@ -12,7 +12,7 @@ let
numpy numpy
psycopg2 psycopg2
chardet chardet
dateutil python-dateutil
pyyaml pyyaml
pytz pytz
requests requests

View file

@ -55,7 +55,7 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
psutil psutil
pyxdg pyxdg
arrow arrow
dateutil python-dateutil
easygui easygui
colour colour
pymediainfo pymediainfo

View file

@ -77,7 +77,7 @@ mkDerivation rec {
cchardet cchardet
css-parser css-parser
cssselect cssselect
dateutil python-dateutil
dnspython dnspython
feedparser feedparser
html2text html2text

View file

@ -20,7 +20,7 @@ buildPythonApplication rec {
''; '';
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil gflags httplib2 parsedatetime six vobject python-dateutil gflags httplib2 parsedatetime six vobject
google-api-python-client oauth2client uritemplate google-api-python-client oauth2client uritemplate
libnotify libnotify
]; ];

View file

@ -18,7 +18,7 @@ with python3.pkgs; buildPythonApplication rec {
click click
click-log click-log
configobj configobj
dateutil python-dateutil
icalendar icalendar
lxml lxml
pkgs.vdirsyncer pkgs.vdirsyncer

View file

@ -29,7 +29,7 @@ python3Packages.buildPythonApplication rec {
pikepdf pikepdf
img2pdf img2pdf
setuptools setuptools
dateutil python-dateutil
]; ];
# incompatible with wrapGAppsHook # incompatible with wrapGAppsHook

View file

@ -3,7 +3,7 @@
, buildPythonApplication , buildPythonApplication
, click , click
, pyfiglet , pyfiglet
, dateutil , python-dateutil
, setuptools , setuptools
}: }:
@ -18,7 +18,7 @@ buildPythonApplication rec {
owner = "trehn"; owner = "trehn";
}; };
propagatedBuildInputs = [ dateutil click pyfiglet setuptools ]; propagatedBuildInputs = [ python-dateutil click pyfiglet setuptools ];
meta = with lib; { meta = with lib; {
description = "Starts a countdown to or from TIMESPEC"; description = "Starts a countdown to or from TIMESPEC";

View file

@ -2,7 +2,7 @@
, lib , lib
, buildPythonApplication , buildPythonApplication
, fetchFromGitHub , fetchFromGitHub
, dateutil , python-dateutil
, pandas , pandas
, requests , requests
, lxml , lxml
@ -36,7 +36,7 @@ buildPythonApplication rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
# from visidata/requirements.txt # from visidata/requirements.txt
# packages not (yet) present in nixpkgs are commented # packages not (yet) present in nixpkgs are commented
dateutil python-dateutil
pandas pandas
requests requests
lxml lxml

View file

@ -1,4 +1,4 @@
{ lib, fetchurl, buildPythonApplication, dateutil, { lib, fetchurl, buildPythonApplication, python-dateutil,
sqlalchemy, setproctitle, icalendar }: sqlalchemy, setproctitle, icalendar }:
buildPythonApplication rec { buildPythonApplication rec {
@ -11,7 +11,7 @@ buildPythonApplication rec {
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil python-dateutil
sqlalchemy sqlalchemy
setproctitle setproctitle
icalendar icalendar

View file

@ -9,7 +9,7 @@ python3.pkgs.buildPythonApplication rec {
sha256 = "b4b1ccf086586d041d7e91e68515d495c550f30e4d179d63863fea9ccdbb78eb"; sha256 = "b4b1ccf086586d041d7e91e68515d495c550f30e4d179d63863fea9ccdbb78eb";
}; };
propagatedBuildInputs = with python3.pkgs; [ dateutil tornado python-daemon boto3 ]; propagatedBuildInputs = with python3.pkgs; [ python-dateutil tornado python-daemon boto3 ];
# Requires tox, hadoop, and google cloud # Requires tox, hadoop, and google cloud
doCheck = false; doCheck = false;

View file

@ -51,7 +51,7 @@ python3.pkgs.buildPythonApplication rec {
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with python3.pkgs; [
beautifulsoup4 beautifulsoup4
dateutil python-dateutil
feedparser feedparser
html5lib html5lib
listparser listparser

View file

@ -46,7 +46,7 @@ python3Packages.buildPythonApplication rec {
pynzb pynzb
pyparsing pyparsing
PyRSS2Gen PyRSS2Gen
dateutil python-dateutil
pyyaml pyyaml
rebulk rebulk
requests requests

View file

@ -48,7 +48,7 @@ python3.pkgs.buildPythonApplication rec {
pythonPath = with python3.pkgs; [ pythonPath = with python3.pkgs; [
pygobject3 pygobject3
pycairo pycairo
dateutil python-dateutil
praw praw
pillow pillow
mistune mistune

View file

@ -55,7 +55,7 @@ in {
sha256 = "0rnshrzw8605x05mpd8ndrx3ri8h6cx713mp8sl4f04f4gcrz8ml"; sha256 = "0rnshrzw8605x05mpd8ndrx3ri8h6cx713mp8sl4f04f4gcrz8ml";
}; };
propagatedBuildInputs = with pythonPackages; [twisted dateutil]; propagatedBuildInputs = with pythonPackages; [twisted python-dateutil];
meta = with lib; { meta = with lib; {
description = "Some (mainly XMPP-related) additions to twisted"; description = "Some (mainly XMPP-related) additions to twisted";

View file

@ -1,5 +1,5 @@
{ lib, fetchFromGitHub, buildPythonApplication, fuse { lib, fetchFromGitHub, buildPythonApplication, fuse
, appdirs, colorama, dateutil, requests, requests_toolbelt , appdirs, colorama, python-dateutil, requests, requests_toolbelt
, fusepy, sqlalchemy, setuptools }: , fusepy, sqlalchemy, setuptools }:
buildPythonApplication rec { buildPythonApplication rec {
@ -15,7 +15,7 @@ buildPythonApplication rec {
sha256 = "0a0fr632l24a3jmgla3b1vcm50ayfa9hdbp677ch1chwj5dq4zfp"; sha256 = "0a0fr632l24a3jmgla3b1vcm50ayfa9hdbp677ch1chwj5dq4zfp";
}; };
propagatedBuildInputs = [ appdirs colorama dateutil fusepy requests propagatedBuildInputs = [ appdirs colorama python-dateutil fusepy requests
requests_toolbelt setuptools sqlalchemy ]; requests_toolbelt setuptools sqlalchemy ];
makeWrapperArgs = [ "--prefix LIBFUSE_PATH : ${fuse}/lib/libfuse.so" ]; makeWrapperArgs = [ "--prefix LIBFUSE_PATH : ${fuse}/lib/libfuse.so" ];

View file

@ -1,6 +1,6 @@
{ lib, fetchFromGitHub, fetchpatch, libnotify, librsvg, killall { lib, fetchFromGitHub, fetchpatch, libnotify, librsvg, killall
, gtk3, libappindicator-gtk3, substituteAll, syncthing, wrapGAppsHook , gtk3, libappindicator-gtk3, substituteAll, syncthing, wrapGAppsHook
, gnome, buildPythonApplication, dateutil, pyinotify, pygobject3 , gnome, buildPythonApplication, python-dateutil, pyinotify, pygobject3
, bcrypt, gobject-introspection, gsettings-desktop-schemas , bcrypt, gobject-introspection, gsettings-desktop-schemas
, pango, gdk-pixbuf, atk }: , pango, gdk-pixbuf, atk }:
@ -30,7 +30,7 @@ buildPythonApplication rec {
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil pyinotify pygobject3 bcrypt python-dateutil pyinotify pygobject3 bcrypt
]; ];
patches = [ patches = [

View file

@ -122,7 +122,7 @@ let
runtimePackages = with python.pkgs; [ runtimePackages = with python.pkgs; [
dateparser dateparser
dateutil python-dateutil
django django
django-cors-headers django-cors-headers
django-crispy-forms django-crispy-forms

View file

@ -122,7 +122,7 @@ python3Packages.buildPythonApplication rec {
openpaperwork-core openpaperwork-core
pypillowfight pypillowfight
pyxdg pyxdg
dateutil python-dateutil
setuptools setuptools
]; ];

View file

@ -34,7 +34,7 @@ python3.pkgs.buildPythonApplication rec {
]; ];
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with python3.pkgs; [
dateutil python-dateutil
markdown2 markdown2
matplotlib matplotlib
numpy numpy

View file

@ -36,7 +36,7 @@ python3Packages.buildPythonApplication rec {
]; ];
propagatedBuildInputs = with python3Packages; [ propagatedBuildInputs = with python3Packages; [
dateutil python-dateutil
pygobject3 pygobject3
goocalendar goocalendar
pycairo pycairo

View file

@ -76,7 +76,7 @@ stdenv.mkDerivation rec {
let pp = python.pkgs; in ([ let pp = python.pkgs; in ([
pp.numpy pp.scipy pp.scikitimage pp.h5py pp.numpy pp.scipy pp.scikitimage pp.h5py
pp.matplotlib pp.ipython pp.networkx pp.nose pp.matplotlib pp.ipython pp.networkx pp.nose
pp.pandas pp.dateutil pp.protobuf pp.gflags pp.pandas pp.python-dateutil pp.protobuf pp.gflags
pp.pyyaml pp.pillow pp.six pp.pyyaml pp.pillow pp.six
] ++ lib.optional leveldbSupport pp.leveldb) ] ++ lib.optional leveldbSupport pp.leveldb)
); );

View file

@ -1,4 +1,4 @@
{ lib, buildPythonApplication, fetchFromGitHub, pycurl, dateutil, configobj, sqlalchemy, sdnotify, flask }: { lib, buildPythonApplication, fetchFromGitHub, pycurl, python-dateutil, configobj, sqlalchemy, sdnotify, flask }:
buildPythonApplication rec { buildPythonApplication rec {
pname = "pyca"; pname = "pyca";
@ -13,7 +13,7 @@ buildPythonApplication rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
pycurl pycurl
dateutil python-dateutil
configobj configobj
sqlalchemy sqlalchemy
sdnotify sdnotify

View file

@ -39,7 +39,7 @@ python37Packages.buildPythonApplication rec {
cairocffi-xcffib cairocffi-xcffib
setuptools setuptools
setuptools-scm setuptools-scm
dateutil python-dateutil
dbus-python dbus-python
mpd2 mpd2
psutil psutil

View file

@ -3,7 +3,7 @@
, Babel , Babel
, blinker , blinker
, buildPythonPackage , buildPythonPackage
, dateutil , python-dateutil
, docutils , docutils
, doit , doit
, fetchPypi , fetchPypi
@ -53,7 +53,7 @@ buildPythonPackage rec {
aiohttp aiohttp
Babel Babel
blinker blinker
dateutil python-dateutil
docutils docutils
doit doit
ghp-import ghp-import

View file

@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi { lib, buildPythonPackage, fetchPypi
, requests, pyjwt, dateutil }: , requests, pyjwt, python-dateutil }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "adal"; pname = "adal";
@ -10,7 +10,7 @@ buildPythonPackage rec {
sha256 = "d74f45b81317454d96e982fd1c50e6fb5c99ac2223728aea8764433a39f566f1"; sha256 = "d74f45b81317454d96e982fd1c50e6fb5c99ac2223728aea8764433a39f566f1";
}; };
propagatedBuildInputs = [ requests pyjwt dateutil ]; propagatedBuildInputs = [ requests pyjwt python-dateutil ];
meta = with lib; { meta = with lib; {
description = "Library to make it easy for python application to authenticate to Azure Active Directory (AAD) in order to access AAD protected web resources"; description = "Library to make it easy for python application to authenticate to Azure Active Directory (AAD) in order to access AAD protected web resources";

View file

@ -1,6 +1,6 @@
{ lib, buildPythonPackage, fetchPypi { lib, buildPythonPackage, fetchPypi
, pytest, pytestcov, mock, coverage, setuptools , pytest, pytestcov, mock, coverage, setuptools
, Mako, sqlalchemy, python-editor, dateutil , Mako, sqlalchemy, python-editor, python-dateutil
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -13,7 +13,7 @@ buildPythonPackage rec {
}; };
buildInputs = [ pytest pytestcov mock coverage ]; buildInputs = [ pytest pytestcov mock coverage ];
propagatedBuildInputs = [ Mako sqlalchemy python-editor dateutil setuptools ]; propagatedBuildInputs = [ Mako sqlalchemy python-editor python-dateutil setuptools ];
# no traditional test suite # no traditional test suite
doCheck = false; doCheck = false;

View file

@ -1,6 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, dateutil , python-dateutil
, fetchPypi , fetchPypi
, isPy3k , isPy3k
, mock , mock
@ -17,7 +17,7 @@ buildPythonPackage rec {
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil python-dateutil
]; ];
checkInputs = [ checkInputs = [

View file

@ -5,7 +5,7 @@
, azure-common , azure-common
, cryptography , cryptography
, futures ? null , futures ? null
, dateutil , python-dateutil
, requests , requests
, isPy3k , isPy3k
}: }:
@ -19,7 +19,7 @@ buildPythonPackage rec {
sha256 = "0pyasfxkin6j8j00qmky7d9cvpxgis4fi9bscgclj6yrpvf14qpv"; sha256 = "0pyasfxkin6j8j00qmky7d9cvpxgis4fi9bscgclj6yrpvf14qpv";
}; };
propagatedBuildInputs = [ azure-common cryptography dateutil requests ] propagatedBuildInputs = [ azure-common cryptography python-dateutil requests ]
++ pkgs.lib.optionals (!isPy3k) [ futures ]; ++ pkgs.lib.optionals (!isPy3k) [ futures ];
postPatch = '' postPatch = ''

View file

@ -5,7 +5,7 @@
, beautifulsoup4 , beautifulsoup4
, bottle , bottle
, chardet , chardet
, dateutil , python-dateutil
, google-api-python-client , google-api-python-client
, google-auth-oauthlib , google-auth-oauthlib
, lxml , lxml
@ -34,7 +34,7 @@ buildPythonPackage rec {
beautifulsoup4 beautifulsoup4
bottle bottle
chardet chardet
dateutil python-dateutil
google-api-python-client google-api-python-client
google-auth-oauthlib google-auth-oauthlib
lxml lxml

View file

@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi { lib, buildPythonPackage, fetchPypi
, dateutil, requests }: , python-dateutil, requests }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "bitcoin-price-api"; pname = "bitcoin-price-api";
@ -10,7 +10,7 @@ buildPythonPackage rec {
sha256 = "bc68076f9632aaa9a8009d916d67a709c1e045dd904cfc7a3e8be33960d32029"; sha256 = "bc68076f9632aaa9a8009d916d67a709c1e045dd904cfc7a3e8be33960d32029";
}; };
propagatedBuildInputs = [ dateutil requests ]; propagatedBuildInputs = [ python-dateutil requests ];
# No tests in archive # No tests in archive
doCheck = false; doCheck = false;

View file

@ -1,7 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, dateutil , python-dateutil
, jmespath , jmespath
, docutils , docutils
, ordereddict , ordereddict
@ -21,7 +21,7 @@ buildPythonPackage rec {
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil python-dateutil
jmespath jmespath
docutils docutils
ordereddict ordereddict

View file

@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder, setuptools { lib, buildPythonPackage, fetchPypi, pythonOlder, setuptools
, twiggy, requests, offtrac, bugzilla, taskw, dateutil, pytz, keyring, six , twiggy, requests, offtrac, bugzilla, taskw, python-dateutil, pytz, keyring, six
, jinja2, pycurl, dogpile_cache, lockfile, click, pyxdg, future, jira }: , jinja2, pycurl, dogpile_cache, lockfile, click, pyxdg, future, jira }:
buildPythonPackage rec { buildPythonPackage rec {
@ -14,7 +14,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
setuptools setuptools
twiggy requests offtrac bugzilla taskw dateutil pytz keyring six twiggy requests offtrac bugzilla taskw python-dateutil pytz keyring six
jinja2 pycurl dogpile_cache lockfile click pyxdg future jira jinja2 pycurl dogpile_cache lockfile click pyxdg future jira
]; ];

View file

@ -1,6 +1,6 @@
{ stdenv, lib, buildPythonPackage, fetchPypi, makeWrapper, isPy3k, { stdenv, lib, buildPythonPackage, fetchPypi, makeWrapper, isPy3k,
python, twisted, jinja2, zope_interface, sqlalchemy, python, twisted, jinja2, zope_interface, sqlalchemy,
sqlalchemy_migrate, dateutil, txaio, autobahn, pyjwt, pyyaml, unidiff, treq, sqlalchemy_migrate, python-dateutil, txaio, autobahn, pyjwt, pyyaml, unidiff, treq,
txrequests, pypugjs, boto3, moto, mock, python-lz4, setuptoolsTrial, txrequests, pypugjs, boto3, moto, mock, python-lz4, setuptoolsTrial,
isort, pylint, flake8, buildbot-worker, buildbot-pkg, buildbot-plugins, isort, pylint, flake8, buildbot-worker, buildbot-pkg, buildbot-plugins,
parameterized, git, openssh, glibcLocales, ldap3, nixosTests }: parameterized, git, openssh, glibcLocales, ldap3, nixosTests }:
@ -39,7 +39,7 @@ let
zope_interface zope_interface
sqlalchemy sqlalchemy
sqlalchemy_migrate sqlalchemy_migrate
dateutil python-dateutil
txaio txaio
autobahn autobahn
pyjwt pyjwt

View file

@ -4,7 +4,7 @@
, fetchFromGitHub , fetchFromGitHub
, ConfigArgParse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface , ConfigArgParse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface
, dialog, gnureadline , dialog, gnureadline
, pytest_xdist, pytestCheckHook, dateutil , pytest_xdist, pytestCheckHook, python-dateutil
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -40,7 +40,7 @@ buildPythonPackage rec {
buildInputs = [ dialog gnureadline ]; buildInputs = [ dialog gnureadline ];
checkInputs = [ checkInputs = [
dateutil python-dateutil
pytestCheckHook pytestCheckHook
pytest_xdist pytest_xdist
]; ];

View file

@ -1,7 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, dateutil , python-dateutil
, sigtools , sigtools
, six , six
, attrs , attrs
@ -29,7 +29,7 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
dateutil python-dateutil
pygments pygments
repeated_test repeated_test
unittest2 unittest2

View file

@ -5,7 +5,7 @@
, attrs , attrs
, colorlog , colorlog
, csvw , csvw
, dateutil , python-dateutil
, tabulate , tabulate
, mock , mock
, postgresql , postgresql
@ -30,7 +30,7 @@ buildPythonPackage rec {
''; '';
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil python-dateutil
tabulate tabulate
colorlog colorlog
attrs attrs

View file

@ -3,7 +3,7 @@
, fetchPypi , fetchPypi
, certifi , certifi
, six , six
, dateutil , python-dateutil
, urllib3 , urllib3
}: }:
@ -22,7 +22,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
certifi certifi
six six
dateutil python-dateutil
urllib3 urllib3
]; ];

View file

@ -4,7 +4,7 @@
, pythonOlder , pythonOlder
, attrs , attrs
, isodate , isodate
, dateutil , python-dateutil
, rfc3986 , rfc3986
, uritemplate , uritemplate
, mock , mock
@ -31,7 +31,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
attrs attrs
isodate isodate
dateutil python-dateutil
rfc3986 rfc3986
uritemplate uritemplate
]; ];

View file

@ -5,7 +5,7 @@
, mock , mock
, numpy , numpy
, multipledispatch , multipledispatch
, dateutil , python-dateutil
}: }:
let let
@ -29,7 +29,7 @@ in buildPythonPackage rec {
}; };
checkInputs = [ pytest mock ]; checkInputs = [ pytest mock ];
propagatedBuildInputs = [ numpy multipledispatch dateutil ]; propagatedBuildInputs = [ numpy multipledispatch python-dateutil ];
# Disable several tests # Disable several tests
# https://github.com/blaze/datashape/issues/232 # https://github.com/blaze/datashape/issues/232

View file

@ -4,7 +4,7 @@
, mock , mock
, parameterized , parameterized
, pytestCheckHook , pytestCheckHook
, dateutil , python-dateutil
, pytz , pytz
, regex , regex
, tzlocal , tzlocal
@ -39,7 +39,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
# install_requires # install_requires
dateutil pytz regex tzlocal python-dateutil pytz regex tzlocal
# extra_requires # extra_requires
convertdate umalqurra jdatetime ruamel_yaml convertdate umalqurra jdatetime ruamel_yaml
]; ];

View file

@ -2,7 +2,7 @@
, buildPythonPackage , buildPythonPackage
, isPy3k , isPy3k
, fetchFromGitHub , fetchFromGitHub
, dateutil , python-dateutil
, pytz , pytz
, regex , regex
, tzlocal , tzlocal
@ -29,7 +29,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
# install_requires # install_requires
dateutil pytz regex tzlocal python-dateutil pytz regex tzlocal
# extra_requires # extra_requires
hijri-converter convertdate hijri-converter convertdate
]; ];

View file

@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi { lib, buildPythonPackage, fetchPypi
, setuptools, setuptools-scm, django, dateutil, whoosh, pysolr , setuptools, setuptools-scm, django, python-dateutil, whoosh, pysolr
, coverage, mock, nose, geopy, requests }: , coverage, mock, nose, geopy, requests }:
buildPythonPackage rec { buildPythonPackage rec {
@ -11,7 +11,7 @@ buildPythonPackage rec {
sha256 = "d490f920afa85471dd1fa5000bc8eff4b704daacbe09aee1a64e75cbc426f3be"; sha256 = "d490f920afa85471dd1fa5000bc8eff4b704daacbe09aee1a64e75cbc426f3be";
}; };
checkInputs = [ pysolr whoosh dateutil geopy coverage nose mock coverage requests ]; checkInputs = [ pysolr whoosh python-dateutil geopy coverage nose mock coverage requests ];
propagatedBuildInputs = [ django setuptools ]; propagatedBuildInputs = [ django setuptools ];
nativeBuildInputs = [ setuptools-scm ]; nativeBuildInputs = [ setuptools-scm ];

View file

@ -7,7 +7,7 @@
, django , django
, pygments , pygments
, simplejson , simplejson
, dateutil , python-dateutil
, requests , requests
, setuptools-scm , setuptools-scm
, sqlparse , sqlparse
@ -56,7 +56,7 @@ buildPythonPackage rec {
nativeBuildInputs = [ setuptools-scm ]; nativeBuildInputs = [ setuptools-scm ];
buildInputs = [ mock ]; buildInputs = [ mock ];
propagatedBuildInputs = [ propagatedBuildInputs = [
django pygments simplejson dateutil requests django pygments simplejson python-dateutil requests
sqlparse jinja2 autopep8 pytz pillow gprof2dot sqlparse jinja2 autopep8 pytz pillow gprof2dot
]; ];

View file

@ -3,7 +3,7 @@
, fetchPypi , fetchPypi
, python , python
, six , six
, dateutil , python-dateutil
, ipaddress , ipaddress
, mock , mock
}: }:
@ -17,7 +17,7 @@ buildPythonPackage rec {
sha256 = "f5bd18deb22ad8cb4402513c025877bc6b50de58902d686b6b21ba8981dce260"; sha256 = "f5bd18deb22ad8cb4402513c025877bc6b50de58902d686b6b21ba8981dce260";
}; };
propagatedBuildInputs = [ six dateutil ipaddress mock ]; propagatedBuildInputs = [ six python-dateutil ipaddress mock ];
# fake-factory is depreciated and single test will always fail # fake-factory is depreciated and single test will always fail
doCheck = false; doCheck = false;

View file

@ -1,7 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, dateutil , python-dateutil
, text-unidecode , text-unidecode
, freezegun , freezegun
, pytestCheckHook , pytestCheckHook
@ -19,7 +19,7 @@ buildPythonPackage rec {
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil python-dateutil
text-unidecode text-unidecode
]; ];

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, dateutil, lxml }: { lib, buildPythonPackage, fetchPypi, python-dateutil, lxml }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "feedgen"; pname = "feedgen";
@ -9,7 +9,7 @@ buildPythonPackage rec {
sha256 = "0jl0b87l7v6c0f1nx6k81skjhdj5i11kmchdjls00mynpvdip0cf"; sha256 = "0jl0b87l7v6c0f1nx6k81skjhdj5i11kmchdjls00mynpvdip0cf";
}; };
propagatedBuildInputs = [ dateutil lxml ]; propagatedBuildInputs = [ python-dateutil lxml ];
# No tests in archive # No tests in archive
doCheck = false; doCheck = false;

View file

@ -2,7 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, coverage , coverage
, dateutil , python-dateutil
, freezegun , freezegun
, mock , mock
, requests-mock , requests-mock
@ -15,7 +15,7 @@ buildPythonPackage rec {
version = "0.3.1"; version = "0.3.1";
checkInputs = [ coverage freezegun mock requests-mock sphinx ]; checkInputs = [ coverage freezegun mock requests-mock sphinx ];
propagatedBuildInputs = [ dateutil requests_oauthlib ]; propagatedBuildInputs = [ python-dateutil requests_oauthlib ];
# The source package on PyPi is missing files required for unit testing. # The source package on PyPi is missing files required for unit testing.
# https://github.com/orcasgit/python-fitbit/issues/148 # https://github.com/orcasgit/python-fitbit/issues/148

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, dateutil, flask, pyjwt, werkzeug, pytest }: { lib, buildPythonPackage, fetchPypi, python-dateutil, flask, pyjwt, werkzeug, pytest }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "Flask-JWT-Extended"; pname = "Flask-JWT-Extended";
@ -9,7 +9,7 @@ buildPythonPackage rec {
sha256 = "76461f2dbdf502261c69ddecd858eaf4164fbcfbf05aa456f3927fc2ab0315de"; sha256 = "76461f2dbdf502261c69ddecd858eaf4164fbcfbf05aa456f3927fc2ab0315de";
}; };
propagatedBuildInputs = [ dateutil flask pyjwt werkzeug ]; propagatedBuildInputs = [ python-dateutil flask pyjwt werkzeug ];
checkInputs = [ pytest ]; checkInputs = [ pytest ];
checkPhase = '' checkPhase = ''

View file

@ -2,7 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27 , isPy27
, dateutil , python-dateutil
, six , six
, mock , mock
, nose , nose
@ -18,7 +18,7 @@ buildPythonPackage rec {
sha256 = "e2062f2c7f95cc276a834c22f1a17179467176b624cc6f936e8bc3be5535ad1b"; sha256 = "e2062f2c7f95cc276a834c22f1a17179467176b624cc6f936e8bc3be5535ad1b";
}; };
propagatedBuildInputs = [ dateutil six ]; propagatedBuildInputs = [ python-dateutil six ];
checkInputs = [ mock nose pytest ]; checkInputs = [ mock nose pytest ];
meta = with lib; { meta = with lib; {

View file

@ -2,7 +2,7 @@
, buildPythonPackage , buildPythonPackage
, pythonOlder , pythonOlder
, fetchPypi , fetchPypi
, dateutil , python-dateutil
, pytestCheckHook , pytestCheckHook
}: }:
@ -16,7 +16,7 @@ buildPythonPackage rec {
sha256 = "177f9dd59861d871e27a484c3332f35a6e3f5d14626f2bf91be37891f18927f3"; sha256 = "177f9dd59861d871e27a484c3332f35a6e3f5d14626f2bf91be37891f18927f3";
}; };
propagatedBuildInputs = [ dateutil ]; propagatedBuildInputs = [ python-dateutil ];
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];
meta = with lib; { meta = with lib; {

View file

@ -6,7 +6,7 @@
, greenlet , greenlet
, httplib2 , httplib2
, six , six
, dateutil , python-dateutil
, fusepy , fusepy
, google-api-python-client , google-api-python-client
}: }:
@ -22,7 +22,7 @@ buildPythonPackage rec {
}; };
buildInputs = [ gipc greenlet httplib2 six ]; buildInputs = [ gipc greenlet httplib2 six ];
propagatedBuildInputs = [ dateutil fusepy google-api-python-client ]; propagatedBuildInputs = [ python-dateutil fusepy google-api-python-client ];
patchPhase = '' patchPhase = ''
substituteInPlace gdrivefs/resources/requirements.txt \ substituteInPlace gdrivefs/resources/requirements.txt \

View file

@ -1,7 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, dateutil , python-dateutil
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -13,7 +13,7 @@ buildPythonPackage rec {
hash = "sha256-wiqc4Qw3dT4miNFk12WnANrkuNefptsKLDEyuniBiU8="; hash = "sha256-wiqc4Qw3dT4miNFk12WnANrkuNefptsKLDEyuniBiU8=";
}; };
propagatedBuildInputs = [ dateutil ]; propagatedBuildInputs = [ python-dateutil ];
# Does not include any unit tests # Does not include any unit tests
doCheck = false; doCheck = false;

View file

@ -9,7 +9,7 @@
, mock , mock
, requests , requests
, uritemplate , uritemplate
, dateutil , python-dateutil
, jwcrypto , jwcrypto
, pyopenssl , pyopenssl
, ndg-httpsclient , ndg-httpsclient
@ -28,7 +28,7 @@ buildPythonPackage rec {
checkInputs = [ betamax pytest betamax-matchers ] checkInputs = [ betamax pytest betamax-matchers ]
++ lib.optional (pythonOlder "3") unittest2 ++ lib.optional (pythonOlder "3") unittest2
++ lib.optional (pythonOlder "3.3") mock; ++ lib.optional (pythonOlder "3.3") mock;
propagatedBuildInputs = [ requests uritemplate dateutil jwcrypto pyopenssl ndg-httpsclient pyasn1 ]; propagatedBuildInputs = [ requests uritemplate python-dateutil jwcrypto pyopenssl ndg-httpsclient pyasn1 ];
postPatch = '' postPatch = ''
sed -i -e 's/unittest2 ==0.5.1/unittest2>=0.5.1/' setup.py sed -i -e 's/unittest2 ==0.5.1/unittest2>=0.5.1/' setup.py

View file

@ -4,7 +4,7 @@
, isPy3k , isPy3k
, pytz , pytz
, gflags , gflags
, dateutil , python-dateutil
, mox , mox
, python , python
}: }:
@ -23,7 +23,7 @@ buildPythonPackage rec {
sed -i '/ez_setup/d' setup.py sed -i '/ez_setup/d' setup.py
''; '';
propagatedBuildInputs = [ pytz gflags dateutil mox ]; propagatedBuildInputs = [ pytz gflags python-dateutil mox ];
checkPhase = '' checkPhase = ''
${python.executable} setup.py google_test ${python.executable} setup.py google_test

View file

@ -2,7 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pytestrunner , pytestrunner
, dateutil , python-dateutil
, babelfish , babelfish
, rebulk , rebulk
}: }:
@ -20,7 +20,7 @@ buildPythonPackage rec {
doCheck = false; doCheck = false;
buildInputs = [ pytestrunner ]; buildInputs = [ pytestrunner ];
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil babelfish rebulk python-dateutil babelfish rebulk
]; ];
meta = { meta = {

View file

@ -1,7 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, convertdate , convertdate
, dateutil , python-dateutil
, fetchPypi , fetchPypi
, hijri-converter , hijri-converter
, korean-lunar-calendar , korean-lunar-calendar
@ -22,7 +22,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
convertdate convertdate
dateutil python-dateutil
hijri-converter hijri-converter
korean-lunar-calendar korean-lunar-calendar
six six

View file

@ -1,5 +1,5 @@
{ buildPythonPackage, fetchPypi { buildPythonPackage, fetchPypi
, requests, six, dateutil }: , requests, six, python-dateutil }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "hypchat"; pname = "hypchat";
@ -10,5 +10,5 @@ buildPythonPackage rec {
sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg"; sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
}; };
propagatedBuildInputs = [ requests six dateutil ]; propagatedBuildInputs = [ requests six python-dateutil ];
} }

View file

@ -2,7 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, setuptools , setuptools
, dateutil , python-dateutil
, pytz , pytz
}: }:
@ -16,7 +16,7 @@ buildPythonPackage rec {
}; };
buildInputs = [ setuptools ]; buildInputs = [ setuptools ];
propagatedBuildInputs = [ dateutil pytz ]; propagatedBuildInputs = [ python-dateutil pytz ];
meta = with lib; { meta = with lib; {
description = "A parser/generator of iCalendar files"; description = "A parser/generator of iCalendar files";

View file

@ -1,6 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, dateutil , python-dateutil
, fetchFromGitHub , fetchFromGitHub
, fetchpatch , fetchpatch
, mock , mock
@ -27,7 +27,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
requests requests
dateutil python-dateutil
pytz pytz
six six
msgpack msgpack

View file

@ -2,7 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, nose , nose
, dateutil , python-dateutil
, ipython_genutils , ipython_genutils
, decorator , decorator
, pyzmq , pyzmq
@ -25,7 +25,7 @@ buildPythonPackage rec {
buildInputs = [ nose ]; buildInputs = [ nose ];
propagatedBuildInputs = [ dateutil ipython_genutils decorator pyzmq ipython jupyter_client ipykernel tornado propagatedBuildInputs = [ python-dateutil ipython_genutils decorator pyzmq ipython jupyter_client ipykernel tornado
] ++ lib.optionals (!isPy3k) [ futures ]; ] ++ lib.optionals (!isPy3k) [ futures ];
# Requires access to cluster # Requires access to cluster

View file

@ -1,7 +1,7 @@
{ lib, buildPythonPackage, fetchFromGitHub { lib, buildPythonPackage, fetchFromGitHub
, six , six
, pytest , pytest
, dateutil , python-dateutil
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -18,7 +18,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ six ]; propagatedBuildInputs = [ six ];
checkInputs = [ dateutil pytest ]; checkInputs = [ python-dateutil pytest ];
checkPhase = '' checkPhase = ''
rm tox.ini rm tox.ini
pytest -k 'not dumps and not time' --ignore=test/test_propclass.py pytest -k 'not dumps and not time' --ignore=test/test_propclass.py

View file

@ -4,7 +4,7 @@
, traitlets , traitlets
, jupyter_core , jupyter_core
, pyzmq , pyzmq
, dateutil , python-dateutil
, isPyPy , isPyPy
, py , py
, tornado , tornado
@ -23,7 +23,7 @@ buildPythonPackage rec {
traitlets traitlets
jupyter_core jupyter_core
pyzmq pyzmq
dateutil python-dateutil
tornado tornado
] ++ lib.optional isPyPy py; ] ++ lib.optional isPyPy py;

View file

@ -4,7 +4,7 @@
, traitlets , traitlets
, jupyter_core , jupyter_core
, pyzmq , pyzmq
, dateutil , python-dateutil
, isPyPy , isPyPy
, py , py
, tornado , tornado
@ -23,7 +23,7 @@ buildPythonPackage rec {
traitlets traitlets
jupyter_core jupyter_core
pyzmq pyzmq
dateutil python-dateutil
tornado tornado
] ++ lib.optional isPyPy py; ] ++ lib.optional isPyPy py;

View file

@ -7,7 +7,7 @@
, alembic , alembic
, async_generator , async_generator
, certipy , certipy
, dateutil , python-dateutil
, entrypoints , entrypoints
, jinja2 , jinja2
, jupyter-telemetry , jupyter-telemetry
@ -115,7 +115,7 @@ buildPythonPackage rec {
alembic alembic
async_generator async_generator
certipy certipy
dateutil python-dateutil
entrypoints entrypoints
jinja2 jinja2
jupyter-telemetry jupyter-telemetry

View file

@ -1,4 +1,4 @@
{ lib, fetchurl, buildPythonPackage, isPy3k, pycurl, six, rpm, dateutil }: { lib, fetchurl, buildPythonPackage, isPy3k, pycurl, six, rpm, python-dateutil }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "koji"; pname = "koji";
@ -10,7 +10,7 @@ buildPythonPackage rec {
sha256 = "0a3kn3qvspvx15imgzzzjsbvw6bqmbk29apbliqwifa9cj7pvb40"; sha256 = "0a3kn3qvspvx15imgzzzjsbvw6bqmbk29apbliqwifa9cj7pvb40";
}; };
propagatedBuildInputs = [ pycurl six rpm dateutil ]; propagatedBuildInputs = [ pycurl six rpm python-dateutil ];
# Judging from SyntaxError # Judging from SyntaxError
disabled = isPy3k; disabled = isPy3k;

View file

@ -9,7 +9,7 @@ python3Packages.buildPythonApplication rec {
sha256 = "1brrik70jyagxa9l0cfmlxvqpilwj1q655bphxnvjxyganxf4c00"; sha256 = "1brrik70jyagxa9l0cfmlxvqpilwj1q655bphxnvjxyganxf4c00";
}; };
propagatedBuildInputs = with python3Packages; [ dateutil future requests beautifulsoup4 ] propagatedBuildInputs = with python3Packages; [ python-dateutil future requests beautifulsoup4 ]
++ lib.optional withTwitter python3Packages.twitter ++ lib.optional withTwitter python3Packages.twitter
; ;

View file

@ -1,5 +1,5 @@
{ lib, stdenv, fetchPypi, writeText, python, buildPythonPackage, pycairo, backports_functools_lru_cache { lib, stdenv, fetchPypi, writeText, python, buildPythonPackage, pycairo, backports_functools_lru_cache
, which, cycler, dateutil, nose, numpy, pyparsing, sphinx, tornado, kiwisolver , which, cycler, python-dateutil, nose, numpy, pyparsing, sphinx, tornado, kiwisolver
, freetype, libpng, pkg-config, mock, pytz, pygobject3, gobject-introspection, functools32, subprocess32 , freetype, libpng, pkg-config, mock, pytz, pygobject3, gobject-introspection, functools32, subprocess32
, fetchpatch , fetchpatch
, enableGhostscript ? false, ghostscript, gtk3 , enableGhostscript ? false, ghostscript, gtk3
@ -38,7 +38,7 @@ buildPythonPackage rec {
++ lib.optional stdenv.isDarwin [ Cocoa ]; ++ lib.optional stdenv.isDarwin [ Cocoa ];
propagatedBuildInputs = propagatedBuildInputs =
[ cycler dateutil nose numpy pyparsing tornado freetype kiwisolver [ cycler python-dateutil nose numpy pyparsing tornado freetype kiwisolver
libpng mock pytz ] libpng mock pytz ]
++ lib.optional (pythonOlder "3.3") backports_functools_lru_cache ++ lib.optional (pythonOlder "3.3") backports_functools_lru_cache
++ lib.optionals enableGtk3 [ cairo pycairo gtk3 gobject-introspection pygobject3 ] ++ lib.optionals enableGtk3 [ cairo pycairo gtk3 gobject-introspection pygobject3 ]

View file

@ -1,5 +1,5 @@
{ lib, stdenv, fetchPypi, writeText, buildPythonPackage, isPy3k, pycairo { lib, stdenv, fetchPypi, writeText, buildPythonPackage, isPy3k, pycairo
, which, cycler, dateutil, numpy, pyparsing, sphinx, tornado, kiwisolver , which, cycler, python-dateutil, numpy, pyparsing, sphinx, tornado, kiwisolver
, freetype, qhull, libpng, pkg-config, mock, pytz, pygobject3, gobject-introspection , freetype, qhull, libpng, pkg-config, mock, pytz, pygobject3, gobject-introspection
, certifi, pillow , certifi, pillow
, enableGhostscript ? true, ghostscript, gtk3 , enableGhostscript ? true, ghostscript, gtk3
@ -36,7 +36,7 @@ buildPythonPackage rec {
++ lib.optional stdenv.isDarwin [ Cocoa ]; ++ lib.optional stdenv.isDarwin [ Cocoa ];
propagatedBuildInputs = propagatedBuildInputs =
[ cycler dateutil numpy pyparsing tornado freetype qhull [ cycler python-dateutil numpy pyparsing tornado freetype qhull
kiwisolver certifi libpng mock pytz pillow ] kiwisolver certifi libpng mock pytz pillow ]
++ lib.optionals enableGtk3 [ cairo pycairo gtk3 gobject-introspection pygobject3 ] ++ lib.optionals enableGtk3 [ cairo pycairo gtk3 gobject-introspection pygobject3 ]
++ lib.optionals enableTk [ tcl tk tkinter libX11 ] ++ lib.optionals enableTk [ tcl tk tkinter libX11 ]

View file

@ -4,7 +4,7 @@
, isPy27 , isPy27
# python dependencies # python dependencies
, click , click
, dateutil , python-dateutil
, etelemetry , etelemetry
, filelock , filelock
, funcsigs , funcsigs
@ -68,7 +68,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
click click
dateutil python-dateutil
etelemetry etelemetry
filelock filelock
funcsigs funcsigs

View file

@ -5,7 +5,7 @@
, configparser , configparser
, cryptography , cryptography
, pyopenssl , pyopenssl
, dateutil , python-dateutil
, pytz , pytz
}: }:
@ -28,7 +28,7 @@ buildPythonPackage rec {
''; '';
propagatedBuildInputs = [ propagatedBuildInputs = [
certifi configparser cryptography pyopenssl dateutil pytz certifi configparser cryptography pyopenssl python-dateutil pytz
]; ];
# Tests fail: https://github.com/oracle/oci-python-sdk/issues/164 # Tests fail: https://github.com/oracle/oci-python-sdk/issues/164

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest, pyyaml } : { lib, buildPythonPackage, fetchPypi, python-dateutil, requests, pytz, pyproj , pytest, pyyaml } :
buildPythonPackage rec { buildPythonPackage rec {
pname = "OWSLib"; pname = "OWSLib";
version = "0.24.1"; version = "0.24.1";
@ -9,7 +9,7 @@ buildPythonPackage rec {
}; };
buildInputs = [ pytest ]; buildInputs = [ pytest ];
propagatedBuildInputs = [ dateutil pyproj pytz requests pyyaml ]; propagatedBuildInputs = [ python-dateutil pyproj pytz requests pyyaml ];
# 'tests' dir not included in pypy distribution archive. # 'tests' dir not included in pypy distribution archive.
doCheck = false; doCheck = false;

View file

@ -8,7 +8,7 @@
, pytest , pytest
, glibcLocales , glibcLocales
, cython , cython
, dateutil , python-dateutil
, scipy , scipy
, moto , moto
, numexpr , numexpr
@ -41,7 +41,7 @@ buildPythonPackage rec {
nativeBuildInputs = [ cython ]; nativeBuildInputs = [ cython ];
buildInputs = lib.optional stdenv.isDarwin libcxx; buildInputs = lib.optional stdenv.isDarwin libcxx;
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil python-dateutil
scipy scipy
numexpr numexpr
pytz pytz
@ -68,7 +68,7 @@ buildPythonPackage rec {
disabledTests = lib.concatMapStringsSep " and " (s: "not " + s) ([ disabledTests = lib.concatMapStringsSep " and " (s: "not " + s) ([
# since dateutil 0.6.0 the following fails: test_fallback_plural, test_ambiguous_flags, test_ambiguous_compat # since python-dateutil 0.6.0 the following fails: test_fallback_plural, test_ambiguous_flags, test_ambiguous_compat
# was supposed to be solved by https://github.com/dateutil/dateutil/issues/321, but is not the case # was supposed to be solved by https://github.com/dateutil/dateutil/issues/321, but is not the case
"test_fallback_plural" "test_fallback_plural"
"test_ambiguous_flags" "test_ambiguous_flags"

View file

@ -7,7 +7,7 @@
, beautifulsoup4 , beautifulsoup4
, bottleneck , bottleneck
, cython , cython
, dateutil , python-dateutil
, html5lib , html5lib
, jinja2 , jinja2
, lxml , lxml
@ -47,7 +47,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
beautifulsoup4 beautifulsoup4
bottleneck bottleneck
dateutil python-dateutil
html5lib html5lib
numexpr numexpr
lxml lxml

View file

@ -1,7 +1,7 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy27 { lib, buildPythonPackage, fetchFromGitHub, isPy27
, glibcLocales, git , glibcLocales, git
, mock, nose, markdown, lxml, typogrify , mock, nose, markdown, lxml, typogrify
, jinja2, pygments, docutils, pytz, unidecode, six, dateutil, feedgenerator , jinja2, pygments, docutils, pytz, unidecode, six, python-dateutil, feedgenerator
, blinker, pillow, beautifulsoup4, markupsafe, pandoc }: , blinker, pillow, beautifulsoup4, markupsafe, pandoc }:
buildPythonPackage rec { buildPythonPackage rec {
@ -44,7 +44,7 @@ buildPythonPackage rec {
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
jinja2 pygments docutils pytz unidecode six dateutil feedgenerator jinja2 pygments docutils pytz unidecode six python-dateutil feedgenerator
blinker pillow beautifulsoup4 markupsafe lxml blinker pillow beautifulsoup4 markupsafe lxml
]; ];

View file

@ -1,5 +1,5 @@
{ lib, fetchPypi, buildPythonPackage, pythonOlder { lib, fetchPypi, buildPythonPackage, pythonOlder
, dateutil , python-dateutil
, importlib-metadata , importlib-metadata
, poetry , poetry
, poetry-core , poetry-core
@ -22,7 +22,7 @@ buildPythonPackage rec {
''; '';
nativeBuildInputs = [ poetry-core ]; nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [ dateutil pytzdata ] propagatedBuildInputs = [ python-dateutil pytzdata ]
++ lib.optional (pythonOlder "3.5") typing ++ lib.optional (pythonOlder "3.5") typing
++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];

View file

@ -3,7 +3,7 @@
, fetchPypi , fetchPypi
, lxml , lxml
, networkx , networkx
, dateutil , python-dateutil
, rdflib , rdflib
, pydot , pydot
}: }:
@ -20,7 +20,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
lxml lxml
networkx networkx
dateutil python-dateutil
rdflib rdflib
]; ];

View file

@ -14,7 +14,7 @@
, psutil , psutil
, pyelftools , pyelftools
, pyserial , pyserial
, dateutil , python-dateutil
, requests , requests
, rpyc , rpyc
, tox , tox
@ -63,7 +63,7 @@ buildPythonPackage rec {
psutil psutil
pyelftools pyelftools
pyserial pyserial
dateutil python-dateutil
requests requests
rpyc rpyc
tox tox

View file

@ -1,4 +1,4 @@
{ lib, fetchPypi, buildPythonPackage, numpy, dateutil }: { lib, fetchPypi, buildPythonPackage, numpy, python-dateutil }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pycollada"; pname = "pycollada";
@ -9,7 +9,7 @@ buildPythonPackage rec {
sha256 = "1rp4wlvfywgk3v6l3hnhjx61x9yqawvvivpq4dig2jj71k3mpsyj"; sha256 = "1rp4wlvfywgk3v6l3hnhjx61x9yqawvvivpq4dig2jj71k3mpsyj";
}; };
propagatedBuildInputs = [ numpy dateutil ]; propagatedBuildInputs = [ numpy python-dateutil ];
# Some tests fail because they refer to test data files that don't exist # Some tests fail because they refer to test data files that don't exist
# (upstream packaging issue) # (upstream packaging issue)

View file

@ -3,7 +3,7 @@
, pythonOlder , pythonOlder
, fetchPypi , fetchPypi
, aiohttp , aiohttp
, dateutil , python-dateutil
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -20,7 +20,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
aiohttp aiohttp
dateutil python-dateutil
]; ];
# no tests implemented # no tests implemented

View file

@ -1,6 +1,6 @@
{ lib, fetchFromGitHub, buildPythonPackage { lib, fetchFromGitHub, buildPythonPackage
, lxml, pycryptodomex, construct , lxml, pycryptodomex, construct
, argon2_cffi, dateutil, future , argon2_cffi, python-dateutil, future
, python , python
}: }:
@ -21,7 +21,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
lxml pycryptodomex construct lxml pycryptodomex construct
argon2_cffi dateutil future argon2_cffi python-dateutil future
]; ];
checkPhase = '' checkPhase = ''

View file

@ -1,6 +1,6 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, dateutil , python-dateutil
, docopt , docopt
, fetchPypi , fetchPypi
, pytestCheckHook , pytestCheckHook
@ -19,7 +19,7 @@ buildPythonPackage rec {
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil python-dateutil
docopt docopt
pyyaml pyyaml
ruamel-yaml ruamel-yaml

View file

@ -2,7 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy27 , isPy27
, dateutil , python-dateutil
, pkgs , pkgs
}: }:
@ -17,7 +17,7 @@ buildPythonPackage rec {
}; };
buildInputs = [ pkgs.coreutils ]; buildInputs = [ pkgs.coreutils ];
propagatedBuildInputs = [ dateutil ]; propagatedBuildInputs = [ python-dateutil ];
preInstall = lib.optionalString stdenv.isDarwin '' preInstall = lib.optionalString stdenv.isDarwin ''
sed -i 's|^\([ ]*\)self.bin_path.*$|\1self.bin_path = "${pkgs.terminal-notifier}/bin/terminal-notifier"|' build/lib/pync/TerminalNotifier.py sed -i 's|^\([ ]*\)self.bin_path.*$|\1self.bin_path = "${pkgs.terminal-notifier}/bin/terminal-notifier"|' build/lib/pync/TerminalNotifier.py

View file

@ -4,7 +4,7 @@
, fetchFromGitHub , fetchFromGitHub
, substituteAll , substituteAll
, xmlsec , xmlsec
, cryptography, defusedxml, pyopenssl, dateutil, pytz, requests, six , cryptography, defusedxml, pyopenssl, python-dateutil, pytz, requests, six
, mock, pyasn1, pymongo, pytest, responses, xmlschema, importlib-resources , mock, pyasn1, pymongo, pytest, responses, xmlschema, importlib-resources
}: }:
@ -36,7 +36,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
cryptography cryptography
dateutil python-dateutil
defusedxml defusedxml
importlib-resources importlib-resources
pyopenssl pyopenssl

View file

@ -4,7 +4,7 @@
, pythonOlder , pythonOlder
, pybind11 , pybind11
, pytestCheckHook , pytestCheckHook
, dateutil , python-dateutil
, doxygen , doxygen
, python , python
, pelican , pelican
@ -28,7 +28,7 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
dateutil python-dateutil
doxygen doxygen
python python
pelican pelican

View file

@ -8,7 +8,7 @@
, pyfiglet , pyfiglet
, requests , requests
, arrow , arrow
, dateutil , python-dateutil
, pysocks , pysocks
, pocket , pocket
}: }:
@ -42,7 +42,7 @@ buildPythonPackage rec {
done done
''; '';
buildInputs = [ pkgs.libjpeg pkgs.freetype pkgs.zlib pkgs.glibcLocales pillow twitter pyfiglet requests arrow dateutil pysocks pocket ]; buildInputs = [ pkgs.libjpeg pkgs.freetype pkgs.zlib pkgs.glibcLocales pillow twitter pyfiglet requests arrow python-dateutil pysocks pocket ];
meta = with lib; { meta = with lib; {
description = "Streaming command-line twitter client"; description = "Streaming command-line twitter client";

View file

@ -5,7 +5,7 @@
, pkgs , pkgs
, cython , cython
, dnspython , dnspython
, dateutil , python-dateutil
, xcaplib , xcaplib
, msrplib , msrplib
, lxml , lxml
@ -34,7 +34,7 @@ buildPythonPackage rec {
nativeBuildInputs = [ pkgs.pkg-config ]; nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = with pkgs; [ alsa-lib ffmpeg_3 libv4l sqlite libvpx ]; buildInputs = with pkgs; [ alsa-lib ffmpeg_3 libv4l sqlite libvpx ];
propagatedBuildInputs = [ cython pkgs.openssl dnspython dateutil xcaplib msrplib lxml python-otr ]; propagatedBuildInputs = [ cython pkgs.openssl dnspython python-dateutil xcaplib msrplib lxml python-otr ];
meta = with lib; { meta = with lib; {
description = "SIP SIMPLE implementation for Python"; description = "SIP SIMPLE implementation for Python";

View file

@ -1,6 +1,6 @@
{ lib, fetchPypi, buildPythonPackage { lib, fetchPypi, buildPythonPackage
, six, sqlalchemy , six, sqlalchemy
, mock, pytz, isort, flake8, jinja2, pg8000, pyodbc, pytest, pymysql, dateutil , mock, pytz, isort, flake8, jinja2, pg8000, pyodbc, pytest, pymysql, python-dateutil
, docutils, flexmock, psycopg2, pygments }: , docutils, flexmock, psycopg2, pygments }:
buildPythonPackage rec { buildPythonPackage rec {
@ -30,7 +30,7 @@ buildPythonPackage rec {
pyodbc pyodbc
pytest pytest
pymysql pymysql
dateutil python-dateutil
docutils docutils
flexmock flexmock
psycopg2 psycopg2

View file

@ -7,7 +7,7 @@
, mechanize , mechanize
, beautifulsoup4 , beautifulsoup4
, pyxdg , pyxdg
, dateutil , python-dateutil
, requests , requests
, httpretty , httpretty
}: }:
@ -24,7 +24,7 @@ buildPythonPackage rec {
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
django suds-jurko ldap mechanize beautifulsoup4 pyxdg dateutil requests django suds-jurko ldap mechanize beautifulsoup4 pyxdg python-dateutil requests
]; ];
buildInputs = [ httpretty ]; buildInputs = [ httpretty ];

View file

@ -4,7 +4,7 @@
, nose , nose
, tox , tox
, six , six
, dateutil , python-dateutil
, kitchen , kitchen
, pytz , pytz
, pkgs , pkgs
@ -29,7 +29,7 @@ buildPythonPackage rec {
doCheck = false; doCheck = false;
buildInputs = [ nose pkgs.taskwarrior tox ]; buildInputs = [ nose pkgs.taskwarrior tox ];
propagatedBuildInputs = [ six dateutil kitchen pytz ]; propagatedBuildInputs = [ six python-dateutil kitchen pytz ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/ralphbean/taskw"; homepage = "https://github.com/ralphbean/taskw";

View file

@ -6,7 +6,7 @@
, lxml , lxml
, relatorio , relatorio
, genshi , genshi
, dateutil , python-dateutil
, polib , polib
, python-sql , python-sql
, werkzeug , werkzeug
@ -41,7 +41,7 @@ buildPythonApplication rec {
lxml lxml
relatorio relatorio
genshi genshi
dateutil python-dateutil
polib polib
python-sql python-sql
werkzeug werkzeug

View file

@ -3,7 +3,7 @@
, buildPythonPackage , buildPythonPackage
, certifi , certifi
, cryptography , cryptography
, dateutil , python-dateutil
, fetchpatch , fetchpatch
, fetchPypi , fetchPypi
, idna , idna
@ -45,7 +45,7 @@ buildPythonPackage rec {
]; ];
checkInputs = [ checkInputs = [
dateutil python-dateutil
mock mock
pytest-freezegun pytest-freezegun
pytest-timeout pytest-timeout

View file

@ -2,7 +2,7 @@
, brotli , brotli
, buildPythonPackage , buildPythonPackage
, cryptography , cryptography
, dateutil , python-dateutil
, fetchPypi , fetchPypi
, idna , idna
, isPy27 , isPy27
@ -36,7 +36,7 @@ buildPythonPackage rec {
]; ];
checkInputs = [ checkInputs = [
dateutil python-dateutil
mock mock
pytest-freezegun pytest-freezegun
pytest-timeout pytest-timeout

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, future, dateutil, six, pytest, mock, parameterized }: { lib, buildPythonPackage, fetchPypi, future, python-dateutil, six, pytest, mock, parameterized }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "vertica-python"; pname = "vertica-python";
@ -9,7 +9,7 @@ buildPythonPackage rec {
sha256 = "94cff37e03f89fc4c5e4b2d4c913c7d5d7450f5a205d14f709b39e0a4202be95"; sha256 = "94cff37e03f89fc4c5e4b2d4c913c7d5d7450f5a205d14f709b39e0a4202be95";
}; };
propagatedBuildInputs = [ future dateutil six ]; propagatedBuildInputs = [ future python-dateutil six ];
checkInputs = [ pytest mock parameterized ]; checkInputs = [ pytest mock parameterized ];

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPyPy, python, dateutil }: { lib, buildPythonPackage, fetchPypi, isPyPy, python, python-dateutil }:
buildPythonPackage rec { buildPythonPackage rec {
version = "0.9.6.1"; version = "0.9.6.1";
@ -11,7 +11,7 @@ buildPythonPackage rec {
disabled = isPyPy; disabled = isPyPy;
propagatedBuildInputs = [ dateutil ]; propagatedBuildInputs = [ python-dateutil ];
checkPhase = "${python.interpreter} tests.py"; checkPhase = "${python.interpreter} tests.py";

View file

@ -1,4 +1,4 @@
{ buildPythonPackage, fetchPypi, isPy27, lib, dateutil, lxml, requests { buildPythonPackage, fetchPypi, isPy27, lib, python-dateutil, lxml, requests
, pytestCheckHook }: , pytestCheckHook }:
buildPythonPackage rec { buildPythonPackage rec {
@ -12,7 +12,7 @@ buildPythonPackage rec {
sha256 = "0yw3n5m70ysjn1ch48znpn4zr4a1bd0lsm7q2grqz7q5hfjzjwk0"; sha256 = "0yw3n5m70ysjn1ch48znpn4zr4a1bd0lsm7q2grqz7q5hfjzjwk0";
}; };
propagatedBuildInputs = [ dateutil lxml requests ]; propagatedBuildInputs = [ python-dateutil lxml requests ];
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];

View file

@ -1,7 +1,7 @@
{ lib, buildPythonPackage, fetchPypi, isPy27 { lib, buildPythonPackage, fetchPypi, isPy27
, Babel , Babel
, cssselect , cssselect
, dateutil , python-dateutil
, feedparser , feedparser
, futures ? null , futures ? null
, gdata , gdata
@ -52,7 +52,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
Babel Babel
cssselect cssselect
dateutil python-dateutil
feedparser feedparser
gdata gdata
gnupg gnupg

View file

@ -5,7 +5,7 @@
, Babel , Babel
, colorama , colorama
, cssselect , cssselect
, dateutil , python-dateutil
, feedparser , feedparser
, gdata , gdata
, gnupg , gnupg
@ -49,7 +49,7 @@ buildPythonPackage rec {
Babel Babel
colorama colorama
cssselect cssselect
dateutil python-dateutil
feedparser feedparser
gdata gdata
gnupg gnupg

Some files were not shown because too many files have changed in this diff Show more