Merge staging-next into staging
This commit is contained in:
commit
c852543c1f
142 changed files with 561 additions and 285 deletions
|
@ -439,7 +439,7 @@ The following example shows which arguments are given to `buildPythonPackage` in
|
|||
order to build [`datashape`](https://github.com/blaze/datashape).
|
||||
|
||||
```nix
|
||||
{ lib, buildPythonPackage, fetchPypi, numpy, multipledispatch, dateutil, pytest }:
|
||||
{ lib, buildPythonPackage, fetchPypi, numpy, multipledispatch, python-dateutil, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "datashape";
|
||||
|
@ -451,7 +451,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
propagatedBuildInputs = [ numpy multipledispatch dateutil ];
|
||||
propagatedBuildInputs = [ numpy multipledispatch python-dateutil ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/ContinuumIO/datashape";
|
||||
|
@ -463,7 +463,7 @@ buildPythonPackage rec {
|
|||
```
|
||||
|
||||
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
|
||||
to `propagatedBuildInputs`.
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ pythonPackages.buildPythonApplication rec {
|
|||
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
chromaprint
|
||||
dateutil
|
||||
python-dateutil
|
||||
discid
|
||||
fasteners
|
||||
mutagen
|
||||
|
|
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [ flex bison zlib proj gdal libtiff libpng fftw sqlite cairo proj
|
||||
readline ffmpeg_3 makeWrapper wxGTK30 netcdf geos postgresql libmysqlclient blas
|
||||
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
|
||||
# directory
|
||||
|
|
|
@ -12,7 +12,7 @@ let
|
|||
numpy
|
||||
psycopg2
|
||||
chardet
|
||||
dateutil
|
||||
python-dateutil
|
||||
pyyaml
|
||||
pytz
|
||||
requests
|
||||
|
|
|
@ -55,7 +55,7 @@ mkDerivationWith python3Packages.buildPythonApplication rec {
|
|||
psutil
|
||||
pyxdg
|
||||
arrow
|
||||
dateutil
|
||||
python-dateutil
|
||||
easygui
|
||||
colour
|
||||
pymediainfo
|
||||
|
|
|
@ -77,7 +77,7 @@ mkDerivation rec {
|
|||
cchardet
|
||||
css-parser
|
||||
cssselect
|
||||
dateutil
|
||||
python-dateutil
|
||||
dnspython
|
||||
feedparser
|
||||
html2text
|
||||
|
|
|
@ -20,7 +20,7 @@ buildPythonApplication rec {
|
|||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil gflags httplib2 parsedatetime six vobject
|
||||
python-dateutil gflags httplib2 parsedatetime six vobject
|
||||
google-api-python-client oauth2client uritemplate
|
||||
libnotify
|
||||
];
|
||||
|
|
|
@ -18,7 +18,7 @@ with python3.pkgs; buildPythonApplication rec {
|
|||
click
|
||||
click-log
|
||||
configobj
|
||||
dateutil
|
||||
python-dateutil
|
||||
icalendar
|
||||
lxml
|
||||
pkgs.vdirsyncer
|
||||
|
|
|
@ -29,7 +29,7 @@ python3Packages.buildPythonApplication rec {
|
|||
pikepdf
|
||||
img2pdf
|
||||
setuptools
|
||||
dateutil
|
||||
python-dateutil
|
||||
];
|
||||
|
||||
# incompatible with wrapGAppsHook
|
||||
|
|
|
@ -5,13 +5,13 @@
|
|||
}:
|
||||
|
||||
let
|
||||
version = "5.0.1";
|
||||
version = "5.0.2";
|
||||
|
||||
subsurfaceSrc = (fetchFromGitHub {
|
||||
owner = "Subsurface";
|
||||
repo = "subsurface";
|
||||
rev = "v${version}";
|
||||
sha256 = "01r836ckvrmgprjf4cqxn2n3w5w4pa2fjrhspjndsspic8nwlrwg";
|
||||
sha256 = "1yay06m8p9qp2ghrg8dxavdq55y09apcgdnb7rihgs3hq86k539n";
|
||||
fetchSubmodules = true;
|
||||
});
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
, buildPythonApplication
|
||||
, click
|
||||
, pyfiglet
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
|
@ -18,7 +18,7 @@ buildPythonApplication rec {
|
|||
owner = "trehn";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil click pyfiglet setuptools ];
|
||||
propagatedBuildInputs = [ python-dateutil click pyfiglet setuptools ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Starts a countdown to or from TIMESPEC";
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
, lib
|
||||
, buildPythonApplication
|
||||
, fetchFromGitHub
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pandas
|
||||
, requests
|
||||
, lxml
|
||||
|
@ -36,7 +36,7 @@ buildPythonApplication rec {
|
|||
propagatedBuildInputs = [
|
||||
# from visidata/requirements.txt
|
||||
# packages not (yet) present in nixpkgs are commented
|
||||
dateutil
|
||||
python-dateutil
|
||||
pandas
|
||||
requests
|
||||
lxml
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, fetchurl, buildPythonApplication, dateutil,
|
||||
{ lib, fetchurl, buildPythonApplication, python-dateutil,
|
||||
sqlalchemy, setproctitle, icalendar }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
|
@ -11,7 +11,7 @@ buildPythonApplication rec {
|
|||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
sqlalchemy
|
||||
setproctitle
|
||||
icalendar
|
||||
|
|
|
@ -9,7 +9,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||
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
|
||||
doCheck = false;
|
||||
|
|
|
@ -51,7 +51,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
beautifulsoup4
|
||||
dateutil
|
||||
python-dateutil
|
||||
feedparser
|
||||
html5lib
|
||||
listparser
|
||||
|
|
|
@ -46,7 +46,7 @@ python3Packages.buildPythonApplication rec {
|
|||
pynzb
|
||||
pyparsing
|
||||
PyRSS2Gen
|
||||
dateutil
|
||||
python-dateutil
|
||||
pyyaml
|
||||
rebulk
|
||||
requests
|
||||
|
|
|
@ -48,7 +48,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||
pythonPath = with python3.pkgs; [
|
||||
pygobject3
|
||||
pycairo
|
||||
dateutil
|
||||
python-dateutil
|
||||
praw
|
||||
pillow
|
||||
mistune
|
||||
|
|
|
@ -55,7 +55,7 @@ in {
|
|||
sha256 = "0rnshrzw8605x05mpd8ndrx3ri8h6cx713mp8sl4f04f4gcrz8ml";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [twisted dateutil];
|
||||
propagatedBuildInputs = with pythonPackages; [twisted python-dateutil];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Some (mainly XMPP-related) additions to twisted";
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ lib, fetchFromGitHub, buildPythonApplication, fuse
|
||||
, appdirs, colorama, dateutil, requests, requests_toolbelt
|
||||
, appdirs, colorama, python-dateutil, requests, requests_toolbelt
|
||||
, fusepy, sqlalchemy, setuptools }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
|
@ -15,7 +15,7 @@ buildPythonApplication rec {
|
|||
sha256 = "0a0fr632l24a3jmgla3b1vcm50ayfa9hdbp677ch1chwj5dq4zfp";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ appdirs colorama dateutil fusepy requests
|
||||
propagatedBuildInputs = [ appdirs colorama python-dateutil fusepy requests
|
||||
requests_toolbelt setuptools sqlalchemy ];
|
||||
|
||||
makeWrapperArgs = [ "--prefix LIBFUSE_PATH : ${fuse}/lib/libfuse.so" ];
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ lib, fetchFromGitHub, fetchpatch, libnotify, librsvg, killall
|
||||
, gtk3, libappindicator-gtk3, substituteAll, syncthing, wrapGAppsHook
|
||||
, gnome, buildPythonApplication, dateutil, pyinotify, pygobject3
|
||||
, gnome, buildPythonApplication, python-dateutil, pyinotify, pygobject3
|
||||
, bcrypt, gobject-introspection, gsettings-desktop-schemas
|
||||
, pango, gdk-pixbuf, atk }:
|
||||
|
||||
|
@ -30,7 +30,7 @@ buildPythonApplication rec {
|
|||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil pyinotify pygobject3 bcrypt
|
||||
python-dateutil pyinotify pygobject3 bcrypt
|
||||
];
|
||||
|
||||
patches = [
|
||||
|
|
|
@ -122,7 +122,7 @@ let
|
|||
|
||||
runtimePackages = with python.pkgs; [
|
||||
dateparser
|
||||
dateutil
|
||||
python-dateutil
|
||||
django
|
||||
django-cors-headers
|
||||
django-crispy-forms
|
||||
|
|
|
@ -122,7 +122,7 @@ python3Packages.buildPythonApplication rec {
|
|||
openpaperwork-core
|
||||
pypillowfight
|
||||
pyxdg
|
||||
dateutil
|
||||
python-dateutil
|
||||
setuptools
|
||||
];
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
dateutil
|
||||
python-dateutil
|
||||
markdown2
|
||||
matplotlib
|
||||
numpy
|
||||
|
|
|
@ -36,7 +36,7 @@ python3Packages.buildPythonApplication rec {
|
|||
];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
dateutil
|
||||
python-dateutil
|
||||
pygobject3
|
||||
goocalendar
|
||||
pycairo
|
||||
|
|
|
@ -76,7 +76,7 @@ stdenv.mkDerivation rec {
|
|||
let pp = python.pkgs; in ([
|
||||
pp.numpy pp.scipy pp.scikitimage pp.h5py
|
||||
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
|
||||
] ++ lib.optional leveldbSupport pp.leveldb)
|
||||
);
|
||||
|
|
|
@ -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 {
|
||||
pname = "pyca";
|
||||
|
@ -13,7 +13,7 @@ buildPythonApplication rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
pycurl
|
||||
dateutil
|
||||
python-dateutil
|
||||
configobj
|
||||
sqlalchemy
|
||||
sdnotify
|
||||
|
|
|
@ -39,7 +39,7 @@ python37Packages.buildPythonApplication rec {
|
|||
cairocffi-xcffib
|
||||
setuptools
|
||||
setuptools-scm
|
||||
dateutil
|
||||
python-dateutil
|
||||
dbus-python
|
||||
mpd2
|
||||
psutil
|
||||
|
|
66
pkgs/data/misc/rime-data/default.nix
Normal file
66
pkgs/data/misc/rime-data/default.nix
Normal file
|
@ -0,0 +1,66 @@
|
|||
{ lib, stdenv, fetchFromGitHub, librime }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "rime-data";
|
||||
version = "0.38.20210628";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "plum";
|
||||
rev = "0b835e347cad9c2d7038cfe82df5b5d1fe1c0327";
|
||||
sha256 = "0mja4wyazxdc6fr7pzij5ah4rzwxv4s12s64vfn5ikx1ias1f8ib";
|
||||
};
|
||||
|
||||
buildInputs = [ librime ];
|
||||
|
||||
buildFlags = [ "all" ];
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
preBuild = import ./fetchSchema.nix fetchFromGitHub;
|
||||
|
||||
postPatch = ''
|
||||
# Disable git operations.
|
||||
sed -i /fetch_or_update_package$/d scripts/install-packages.sh
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Schema data of Rime Input Method Engine";
|
||||
longDescription = ''
|
||||
Rime-data provides schema data for Rime Input Method Engine.
|
||||
'';
|
||||
homepage = "https://rime.im";
|
||||
license = with licenses; [
|
||||
# rime-array
|
||||
# rime-combo-pinyin
|
||||
# rime-double-pinyin
|
||||
# rime-middle-chinese
|
||||
# rime-scj
|
||||
# rime-soutzoe
|
||||
# rime-stenotype
|
||||
# rime-wugniu
|
||||
gpl3Only
|
||||
|
||||
# plum
|
||||
# rime-bopomofo
|
||||
# rime-cangjie
|
||||
# rime-emoji
|
||||
# rime-essay
|
||||
# rime-ipa
|
||||
# rime-jyutping
|
||||
# rime-luna-pinyin
|
||||
# rime-prelude
|
||||
# rime-quick
|
||||
# rime-stroke
|
||||
# rime-terra-pinyin
|
||||
# rime-wubi
|
||||
lgpl3Only
|
||||
|
||||
# rime-pinyin-simp
|
||||
asl20
|
||||
|
||||
# rime-cantonese
|
||||
cc-by-40
|
||||
];
|
||||
maintainers = [ maintainers.pengmeiyu ];
|
||||
};
|
||||
}
|
137
pkgs/data/misc/rime-data/fetchSchema.nix
Normal file
137
pkgs/data/misc/rime-data/fetchSchema.nix
Normal file
|
@ -0,0 +1,137 @@
|
|||
# Generated using generateFetchSchema.sh
|
||||
fetchFromGitHub:
|
||||
''
|
||||
mkdir -p package/rime
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-array";
|
||||
rev = "8514193da939bc8888ad6a744f5e5921d4baebc7";
|
||||
sha256 = "1fy7pcq7d8m0wzkkhklmv6p370ms9lqc1zpndyy2xjamzrbb9l83";
|
||||
}} package/rime/array
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-bopomofo";
|
||||
rev = "c7618f4f5728e1634417e9d02ea50d82b71956ab";
|
||||
sha256 = "0g77nv0jrwqnbqqna0ib0kqcy6l5zl62kh49ny67d6bjwnwz9186";
|
||||
}} package/rime/bopomofo
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-cangjie";
|
||||
rev = "8dfad9e537f18821b71ba28773315d9c670ae245";
|
||||
sha256 = "029kw9nx6x0acg4f0m8wj1ziqffffhy9yyj51nlx17cnia0qcrby";
|
||||
}} package/rime/cangjie
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-cantonese";
|
||||
rev = "b6f800c74eb639816d56d0d5601aaa96c8963178";
|
||||
sha256 = "1a4ksacbz8l30y3y5c017d0hzwik8knplglb3yswy7l4hsvaanyh";
|
||||
}} package/rime/cantonese
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-combo-pinyin";
|
||||
rev = "a84065a86b272c76215215bd6f03c506b6e7097c";
|
||||
sha256 = "1f0b4kakw0x26gmx7xi4f94nbjlb8lvi9bks4f92jswa045vnd87";
|
||||
}} package/rime/combo-pinyin
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-double-pinyin";
|
||||
rev = "69bf85d4dfe8bac139c36abbd68d530b8b6622ea";
|
||||
sha256 = "093wif5avvvw45fqbwj5wkbxrychy4pagl4mwsmbrayc8jkp69ak";
|
||||
}} package/rime/double-pinyin
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-emoji";
|
||||
rev = "4c8c51f4a3bc7298c99376eda9bbd86070fc4fa1";
|
||||
sha256 = "0175jqh210fncafqckr9zzaw55qpswmqjrykwms1apmc68l43122";
|
||||
}} package/rime/emoji
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-essay";
|
||||
rev = "9db2e77305e75798baf3ec8dcf1f82785b5e1be9";
|
||||
sha256 = "03ypkkaadd5qmyg26n24a66cll90xvcimgbmiyv4d33jradiqg22";
|
||||
}} package/rime/essay
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-ipa";
|
||||
rev = "22b71710e029bcb412e9197192a638ab11bc2abf";
|
||||
sha256 = "0zdk4f9qkfj3q5hmjnairj1lv6f6y27mic12k886n6sxywwbwr2k";
|
||||
}} package/rime/ipa
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-jyutping";
|
||||
rev = "1e24baa6998815c716c581effe8ec65ee87c4e8c";
|
||||
sha256 = "0s2rckpwlrm3n7w1csnqyi5p9mkpp3z87s7mrm2vc9sv06rpv7zl";
|
||||
}} package/rime/jyutping
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-luna-pinyin";
|
||||
rev = "623adb022b094d540218b287c2e601509eee3347";
|
||||
sha256 = "06pcwp09l5wkqv7792gbsl31xnlb3gr9q6bgbp94vvq6m2ycahqz";
|
||||
}} package/rime/luna-pinyin
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-middle-chinese";
|
||||
rev = "9fad7a7c0c26167d5e6e85db8df48a15c7f7d4f0";
|
||||
sha256 = "0a0bqrlzg0k692xblqnh1rh1fwwqqb205xwxlihgji85n8ibcgph";
|
||||
}} package/rime/middle-chinese
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-pinyin-simp";
|
||||
rev = "b0e84cda02c613ebdedc127a26131b3800f45a8e";
|
||||
sha256 = "05v804qr3a9xvjzp9yid7231fi2l2yrl47ybbvql61z9k36ab094";
|
||||
}} package/rime/pinyin-simp
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-prelude";
|
||||
rev = "3de303ffaa731dba07b0462ce59f4767e1219ad2";
|
||||
sha256 = "0g7a0bla58rh1v3md59k6adk185pilb4z8i2i0pqdl4nwqp40n2p";
|
||||
}} package/rime/prelude
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-quick";
|
||||
rev = "3fe5911ba608cb2df1b6301b76ad1573bd482a76";
|
||||
sha256 = "08bh87ym5qvw55lyw20l3m7jd4c2z5rvil8h5q8790r7z6j6ijy9";
|
||||
}} package/rime/quick
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-scj";
|
||||
rev = "cab5a0858765eff0553dd685a2d61d5536e9149c";
|
||||
sha256 = "0ard2bjp4896a8dimmcwyjwgmp9kl4rz92yc92jnd3y4rgwl6fvk";
|
||||
}} package/rime/scj
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-soutzoe";
|
||||
rev = "beeaeca72d8e17dfd1e9af58680439e9012987dc";
|
||||
sha256 = "0jyqx0q9s0qxn168l5n8zav8jcl2g5ppr7pa8jm1vwrllf20slcc";
|
||||
}} package/rime/soutzoe
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-stenotype";
|
||||
rev = "f3e9189d5ce33c55d3936cc58e39d0c88b3f0c88";
|
||||
sha256 = "0dl6px7lrh3xa87knjzwzdcwjj1k1dg4l72q7lb48an4s9f1cy5d";
|
||||
}} package/rime/stenotype
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-stroke";
|
||||
rev = "ea8576d1accd6fda339e96b415caadb56e2a07d1";
|
||||
sha256 = "07h6nq9867hjrd2v3h1pnr940sdrw4mqrzj43siz1rzjxz3s904r";
|
||||
}} package/rime/stroke
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-terra-pinyin";
|
||||
rev = "ce7b9249612f575d2f43d51fcacd31d1b4e0ef1b";
|
||||
sha256 = "0vm303f4lrdmdmif5klrp6w29vn9z2vzw33cw0y83pcnz39wiads";
|
||||
}} package/rime/terra-pinyin
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-wubi";
|
||||
rev = "f1876f08f1d4a9696395be0070c0e8e4353c44cb";
|
||||
sha256 = "1d9y9rqssacria9d0hla96czsqv2wkfm6z926m1x269ryv96zxvk";
|
||||
}} package/rime/wubi
|
||||
ln -sv ${fetchFromGitHub {
|
||||
owner = "rime";
|
||||
repo = "rime-wugniu";
|
||||
rev = "abd1ee98efbf170258fcf43875c21a4259e00b61";
|
||||
sha256 = "0qn54d3cclny106ixdw08r5n6wn52ffs1hgrma3k0j4pv0kr9nlq";
|
||||
}} package/rime/wugniu
|
||||
''
|
43
pkgs/data/misc/rime-data/generateFetchSchema.sh
Executable file
43
pkgs/data/misc/rime-data/generateFetchSchema.sh
Executable file
|
@ -0,0 +1,43 @@
|
|||
#!/usr/bin/env nix-shell
|
||||
#!nix-shell -i bash -p nix-prefetch-git -p jq
|
||||
|
||||
imlist=(
|
||||
array
|
||||
bopomofo
|
||||
cangjie
|
||||
cantonese
|
||||
combo-pinyin
|
||||
double-pinyin
|
||||
emoji
|
||||
essay
|
||||
ipa
|
||||
jyutping
|
||||
luna-pinyin
|
||||
middle-chinese
|
||||
pinyin-simp
|
||||
prelude
|
||||
quick
|
||||
scj
|
||||
soutzoe
|
||||
stenotype
|
||||
stroke
|
||||
terra-pinyin
|
||||
wubi
|
||||
wugniu
|
||||
)
|
||||
|
||||
echo "# Generated using generateFetchSchema.sh"
|
||||
echo "fetchFromGitHub:"
|
||||
echo \'\'
|
||||
echo "mkdir -p package/rime"
|
||||
for im in ${imlist[@]}; do
|
||||
tempFile=$(mktemp)
|
||||
echo "ln -sv \${fetchFromGitHub {"
|
||||
echo " owner = \"rime\";"
|
||||
echo " repo = \"rime-$im\";"
|
||||
nix-prefetch-git --quiet https://github.com/rime/rime-$im \
|
||||
| jq '{ rev: .rev, sha256: .sha256 }' \
|
||||
| jq -r 'to_entries | map(" \(.key) = \"\(.value)\";") | .[]'
|
||||
echo "}} package/rime/$im"
|
||||
done
|
||||
echo \'\'
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "blas";
|
||||
version = "3.8.0";
|
||||
version = "3.10.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.netlib.org/blas/${pname}-${version}.tgz";
|
||||
sha256 = "1s24iry5197pskml4iygasw196bdhplj0jmbsb9jhabcjqj2mpsm";
|
||||
sha256 = "sha256-LjYNmcm9yEB6YYiMQKqFP7QhlCDruCZNtIbLiGBGirM=";
|
||||
};
|
||||
|
||||
buildInputs = [ gfortran ];
|
||||
|
@ -20,17 +20,17 @@ stdenv.mkDerivation rec {
|
|||
echo >>make.inc "NOOPT = -O0 -fPIC"
|
||||
echo >>make.inc "LOADER = gfortran"
|
||||
echo >>make.inc "LOADOPTS ="
|
||||
echo >>make.inc "ARCH = gfortran"
|
||||
echo >>make.inc "ARCHFLAGS = -shared -o"
|
||||
echo >>make.inc "AR = gfortran"
|
||||
echo >>make.inc "ARFLAGS = -shared -o"
|
||||
echo >>make.inc "RANLIB = echo"
|
||||
echo >>make.inc "BLASLIB = libblas.so.${version}"
|
||||
'';
|
||||
|
||||
buildPhase = ''
|
||||
make
|
||||
echo >>make.inc "ARCHFLAGS = "
|
||||
echo >>make.inc "ARFLAGS = "
|
||||
echo >>make.inc "BLASLIB = libblas.a"
|
||||
echo >>make.inc "ARCH = ar rcs"
|
||||
echo >>make.inc "AR = ar rcs"
|
||||
echo >>make.inc "RANLIB = ranlib"
|
||||
make
|
||||
'';
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
, Babel
|
||||
, blinker
|
||||
, buildPythonPackage
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, docutils
|
||||
, doit
|
||||
, fetchPypi
|
||||
|
@ -53,7 +53,7 @@ buildPythonPackage rec {
|
|||
aiohttp
|
||||
Babel
|
||||
blinker
|
||||
dateutil
|
||||
python-dateutil
|
||||
docutils
|
||||
doit
|
||||
ghp-import
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ lib, buildPythonPackage, fetchPypi
|
||||
, requests, pyjwt, dateutil }:
|
||||
, requests, pyjwt, python-dateutil }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "adal";
|
||||
|
@ -10,7 +10,7 @@ buildPythonPackage rec {
|
|||
sha256 = "d74f45b81317454d96e982fd1c50e6fb5c99ac2223728aea8764433a39f566f1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests pyjwt dateutil ];
|
||||
propagatedBuildInputs = [ requests pyjwt python-dateutil ];
|
||||
|
||||
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";
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "aiomusiccast";
|
||||
version = "0.8.1";
|
||||
version = "0.8.2";
|
||||
|
||||
format = "pyproject";
|
||||
|
||||
|
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
|||
owner = "vigonotion";
|
||||
repo = "aiomusiccast";
|
||||
rev = version;
|
||||
sha256 = "sha256-1k0ELXA8TgAyRYdzSFXp/BsPesC1WCiC4PqHfcPk0u8=";
|
||||
sha256 = "sha256-XmDE704c9KJst8hrvdyQdS52Sd6RnprQZjBCIWAaiho=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ lib, buildPythonPackage, fetchPypi
|
||||
, pytest, pytestcov, mock, coverage, setuptools
|
||||
, Mako, sqlalchemy, python-editor, dateutil
|
||||
, Mako, sqlalchemy, python-editor, python-dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -13,7 +13,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
buildInputs = [ pytest pytestcov mock coverage ];
|
||||
propagatedBuildInputs = [ Mako sqlalchemy python-editor dateutil setuptools ];
|
||||
propagatedBuildInputs = [ Mako sqlalchemy python-editor python-dateutil setuptools ];
|
||||
|
||||
# no traditional test suite
|
||||
doCheck = false;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, mock
|
||||
|
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
, azure-common
|
||||
, cryptography
|
||||
, futures ? null
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, requests
|
||||
, isPy3k
|
||||
}:
|
||||
|
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
|||
sha256 = "0pyasfxkin6j8j00qmky7d9cvpxgis4fi9bscgclj6yrpvf14qpv";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ azure-common cryptography dateutil requests ]
|
||||
propagatedBuildInputs = [ azure-common cryptography python-dateutil requests ]
|
||||
++ pkgs.lib.optionals (!isPy3k) [ futures ];
|
||||
|
||||
postPatch = ''
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
, beautifulsoup4
|
||||
, bottle
|
||||
, chardet
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, google-api-python-client
|
||||
, google-auth-oauthlib
|
||||
, lxml
|
||||
|
@ -34,7 +34,7 @@ buildPythonPackage rec {
|
|||
beautifulsoup4
|
||||
bottle
|
||||
chardet
|
||||
dateutil
|
||||
python-dateutil
|
||||
google-api-python-client
|
||||
google-auth-oauthlib
|
||||
lxml
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ lib, buildPythonPackage, fetchPypi
|
||||
, dateutil, requests }:
|
||||
, python-dateutil, requests }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "bitcoin-price-api";
|
||||
|
@ -10,7 +10,7 @@ buildPythonPackage rec {
|
|||
sha256 = "bc68076f9632aaa9a8009d916d67a709c1e045dd904cfc7a3e8be33960d32029";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil requests ];
|
||||
propagatedBuildInputs = [ python-dateutil requests ];
|
||||
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, jmespath
|
||||
, docutils
|
||||
, ordereddict
|
||||
|
@ -21,7 +21,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
jmespath
|
||||
docutils
|
||||
ordereddict
|
||||
|
|
|
@ -5,13 +5,13 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "bravado-core";
|
||||
version = "5.16.1";
|
||||
version = "5.17.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Yelp";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0r9gk5vkjbc407fjydms3ik3hnzajq54znyz58d8rm6pvqcvjjpl";
|
||||
sha256 = "sha256-okQA4YJq0lyVJuDzD8mMRlOS/K3gf1qRUpw/5M0LlZE=";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ 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 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -14,7 +14,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
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
|
||||
];
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, lib, buildPythonPackage, fetchPypi, makeWrapper, isPy3k,
|
||||
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,
|
||||
isort, pylint, flake8, buildbot-worker, buildbot-pkg, buildbot-plugins,
|
||||
parameterized, git, openssh, glibcLocales, ldap3, nixosTests }:
|
||||
|
@ -39,7 +39,7 @@ let
|
|||
zope_interface
|
||||
sqlalchemy
|
||||
sqlalchemy_migrate
|
||||
dateutil
|
||||
python-dateutil
|
||||
txaio
|
||||
autobahn
|
||||
pyjwt
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
, fetchFromGitHub
|
||||
, ConfigArgParse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface
|
||||
, dialog, gnureadline
|
||||
, pytest_xdist, pytestCheckHook, dateutil
|
||||
, pytest_xdist, pytestCheckHook, python-dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -40,7 +40,7 @@ buildPythonPackage rec {
|
|||
buildInputs = [ dialog gnureadline ];
|
||||
|
||||
checkInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
pytestCheckHook
|
||||
pytest_xdist
|
||||
];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, sigtools
|
||||
, six
|
||||
, attrs
|
||||
|
@ -29,7 +29,7 @@ buildPythonPackage rec {
|
|||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
dateutil
|
||||
python-dateutil
|
||||
pygments
|
||||
repeated_test
|
||||
unittest2
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
, attrs
|
||||
, colorlog
|
||||
, csvw
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, tabulate
|
||||
, mock
|
||||
, postgresql
|
||||
|
@ -30,7 +30,7 @@ buildPythonPackage rec {
|
|||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
tabulate
|
||||
colorlog
|
||||
attrs
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
, fetchPypi
|
||||
, certifi
|
||||
, six
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, urllib3
|
||||
}:
|
||||
|
||||
|
@ -22,7 +22,7 @@ buildPythonPackage rec {
|
|||
propagatedBuildInputs = [
|
||||
certifi
|
||||
six
|
||||
dateutil
|
||||
python-dateutil
|
||||
urllib3
|
||||
];
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
, pythonOlder
|
||||
, attrs
|
||||
, isodate
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, rfc3986
|
||||
, uritemplate
|
||||
, mock
|
||||
|
@ -31,7 +31,7 @@ buildPythonPackage rec {
|
|||
propagatedBuildInputs = [
|
||||
attrs
|
||||
isodate
|
||||
dateutil
|
||||
python-dateutil
|
||||
rfc3986
|
||||
uritemplate
|
||||
];
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
, mock
|
||||
, numpy
|
||||
, multipledispatch
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
}:
|
||||
|
||||
let
|
||||
|
@ -29,7 +29,7 @@ in buildPythonPackage rec {
|
|||
};
|
||||
|
||||
checkInputs = [ pytest mock ];
|
||||
propagatedBuildInputs = [ numpy multipledispatch dateutil ];
|
||||
propagatedBuildInputs = [ numpy multipledispatch python-dateutil ];
|
||||
|
||||
# Disable several tests
|
||||
# https://github.com/blaze/datashape/issues/232
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
, mock
|
||||
, parameterized
|
||||
, pytestCheckHook
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pytz
|
||||
, regex
|
||||
, tzlocal
|
||||
|
@ -39,7 +39,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
# install_requires
|
||||
dateutil pytz regex tzlocal
|
||||
python-dateutil pytz regex tzlocal
|
||||
# extra_requires
|
||||
convertdate umalqurra jdatetime ruamel_yaml
|
||||
];
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
, buildPythonPackage
|
||||
, isPy3k
|
||||
, fetchFromGitHub
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pytz
|
||||
, regex
|
||||
, tzlocal
|
||||
|
@ -29,7 +29,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
# install_requires
|
||||
dateutil pytz regex tzlocal
|
||||
python-dateutil pytz regex tzlocal
|
||||
# extra_requires
|
||||
hijri-converter convertdate
|
||||
];
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ lib, buildPythonPackage, fetchPypi
|
||||
, setuptools, setuptools-scm, django, dateutil, whoosh, pysolr
|
||||
, setuptools, setuptools-scm, django, python-dateutil, whoosh, pysolr
|
||||
, coverage, mock, nose, geopy, requests }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -11,7 +11,7 @@ buildPythonPackage rec {
|
|||
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 ];
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
, django
|
||||
, pygments
|
||||
, simplejson
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, requests
|
||||
, setuptools-scm
|
||||
, sqlparse
|
||||
|
@ -56,7 +56,7 @@ buildPythonPackage rec {
|
|||
nativeBuildInputs = [ setuptools-scm ];
|
||||
buildInputs = [ mock ];
|
||||
propagatedBuildInputs = [
|
||||
django pygments simplejson dateutil requests
|
||||
django pygments simplejson python-dateutil requests
|
||||
sqlparse jinja2 autopep8 pytz pillow gprof2dot
|
||||
];
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
, fetchPypi
|
||||
, python
|
||||
, six
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, ipaddress
|
||||
, mock
|
||||
}:
|
||||
|
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||
sha256 = "f5bd18deb22ad8cb4402513c025877bc6b50de58902d686b6b21ba8981dce260";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six dateutil ipaddress mock ];
|
||||
propagatedBuildInputs = [ six python-dateutil ipaddress mock ];
|
||||
|
||||
# fake-factory is depreciated and single test will always fail
|
||||
doCheck = false;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, text-unidecode
|
||||
, freezegun
|
||||
, pytestCheckHook
|
||||
|
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
text-unidecode
|
||||
];
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, dateutil, lxml }:
|
||||
{ lib, buildPythonPackage, fetchPypi, python-dateutil, lxml }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "feedgen";
|
||||
|
@ -9,7 +9,7 @@ buildPythonPackage rec {
|
|||
sha256 = "0jl0b87l7v6c0f1nx6k81skjhdj5i11kmchdjls00mynpvdip0cf";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil lxml ];
|
||||
propagatedBuildInputs = [ python-dateutil lxml ];
|
||||
|
||||
# No tests in archive
|
||||
doCheck = false;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, coverage
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, freezegun
|
||||
, mock
|
||||
, requests-mock
|
||||
|
@ -15,7 +15,7 @@ buildPythonPackage rec {
|
|||
version = "0.3.1";
|
||||
|
||||
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.
|
||||
# https://github.com/orcasgit/python-fitbit/issues/148
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, dateutil, flask, pyjwt, werkzeug, pytest }:
|
||||
{ lib, buildPythonPackage, fetchPypi, python-dateutil, flask, pyjwt, werkzeug, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Flask-JWT-Extended";
|
||||
|
@ -9,7 +9,7 @@ buildPythonPackage rec {
|
|||
sha256 = "76461f2dbdf502261c69ddecd858eaf4164fbcfbf05aa456f3927fc2ab0315de";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil flask pyjwt werkzeug ];
|
||||
propagatedBuildInputs = [ python-dateutil flask pyjwt werkzeug ];
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
checkPhase = ''
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, six
|
||||
, mock
|
||||
, nose
|
||||
|
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
|||
sha256 = "e2062f2c7f95cc276a834c22f1a17179467176b624cc6f936e8bc3be5535ad1b";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil six ];
|
||||
propagatedBuildInputs = [ python-dateutil six ];
|
||||
checkInputs = [ mock nose pytest ];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
|
@ -16,7 +16,7 @@ buildPythonPackage rec {
|
|||
sha256 = "177f9dd59861d871e27a484c3332f35a6e3f5d14626f2bf91be37891f18927f3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil ];
|
||||
propagatedBuildInputs = [ python-dateutil ];
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
, greenlet
|
||||
, httplib2
|
||||
, six
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, fusepy
|
||||
, google-api-python-client
|
||||
}:
|
||||
|
@ -22,7 +22,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
buildInputs = [ gipc greenlet httplib2 six ];
|
||||
propagatedBuildInputs = [ dateutil fusepy google-api-python-client ];
|
||||
propagatedBuildInputs = [ python-dateutil fusepy google-api-python-client ];
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace gdrivefs/resources/requirements.txt \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -13,7 +13,7 @@ buildPythonPackage rec {
|
|||
hash = "sha256-wiqc4Qw3dT4miNFk12WnANrkuNefptsKLDEyuniBiU8=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dateutil ];
|
||||
propagatedBuildInputs = [ python-dateutil ];
|
||||
|
||||
# Does not include any unit tests
|
||||
doCheck = false;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
, mock
|
||||
, requests
|
||||
, uritemplate
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, jwcrypto
|
||||
, pyopenssl
|
||||
, ndg-httpsclient
|
||||
|
@ -28,7 +28,7 @@ buildPythonPackage rec {
|
|||
checkInputs = [ betamax pytest betamax-matchers ]
|
||||
++ lib.optional (pythonOlder "3") unittest2
|
||||
++ 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 = ''
|
||||
sed -i -e 's/unittest2 ==0.5.1/unittest2>=0.5.1/' setup.py
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
, isPy3k
|
||||
, pytz
|
||||
, gflags
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, mox
|
||||
, python
|
||||
}:
|
||||
|
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
|||
sed -i '/ez_setup/d' setup.py
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ pytz gflags dateutil mox ];
|
||||
propagatedBuildInputs = [ pytz gflags python-dateutil mox ];
|
||||
|
||||
checkPhase = ''
|
||||
${python.executable} setup.py google_test
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pytestrunner
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, babelfish
|
||||
, rebulk
|
||||
}:
|
||||
|
@ -20,7 +20,7 @@ buildPythonPackage rec {
|
|||
doCheck = false;
|
||||
buildInputs = [ pytestrunner ];
|
||||
propagatedBuildInputs = [
|
||||
dateutil babelfish rebulk
|
||||
python-dateutil babelfish rebulk
|
||||
];
|
||||
|
||||
meta = {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, convertdate
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, fetchPypi
|
||||
, hijri-converter
|
||||
, korean-lunar-calendar
|
||||
|
@ -22,7 +22,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
convertdate
|
||||
dateutil
|
||||
python-dateutil
|
||||
hijri-converter
|
||||
korean-lunar-calendar
|
||||
six
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ buildPythonPackage, fetchPypi
|
||||
, requests, six, dateutil }:
|
||||
, requests, six, python-dateutil }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "hypchat";
|
||||
|
@ -10,5 +10,5 @@ buildPythonPackage rec {
|
|||
sha256 = "1sd8f3gihagaqd848dqy6xw457fa4f9bla1bfyni7fq3h76sjdzg";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests six dateutil ];
|
||||
propagatedBuildInputs = [ requests six python-dateutil ];
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pytz
|
||||
}:
|
||||
|
||||
|
@ -16,7 +16,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
buildInputs = [ setuptools ];
|
||||
propagatedBuildInputs = [ dateutil pytz ];
|
||||
propagatedBuildInputs = [ python-dateutil pytz ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A parser/generator of iCalendar files";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, mock
|
||||
|
@ -27,7 +27,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
dateutil
|
||||
python-dateutil
|
||||
pytz
|
||||
six
|
||||
msgpack
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, nose
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, ipython_genutils
|
||||
, decorator
|
||||
, pyzmq
|
||||
|
@ -25,7 +25,7 @@ buildPythonPackage rec {
|
|||
|
||||
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 ];
|
||||
|
||||
# Requires access to cluster
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub
|
||||
, six
|
||||
, pytest
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
checkInputs = [ dateutil pytest ];
|
||||
checkInputs = [ python-dateutil pytest ];
|
||||
checkPhase = ''
|
||||
rm tox.ini
|
||||
pytest -k 'not dumps and not time' --ignore=test/test_propclass.py
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
, traitlets
|
||||
, jupyter_core
|
||||
, pyzmq
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, isPyPy
|
||||
, py
|
||||
, tornado
|
||||
|
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
|||
traitlets
|
||||
jupyter_core
|
||||
pyzmq
|
||||
dateutil
|
||||
python-dateutil
|
||||
tornado
|
||||
] ++ lib.optional isPyPy py;
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
, traitlets
|
||||
, jupyter_core
|
||||
, pyzmq
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, isPyPy
|
||||
, py
|
||||
, tornado
|
||||
|
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
|||
traitlets
|
||||
jupyter_core
|
||||
pyzmq
|
||||
dateutil
|
||||
python-dateutil
|
||||
tornado
|
||||
] ++ lib.optional isPyPy py;
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
, alembic
|
||||
, async_generator
|
||||
, certipy
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, entrypoints
|
||||
, jinja2
|
||||
, jupyter-telemetry
|
||||
|
@ -115,7 +115,7 @@ buildPythonPackage rec {
|
|||
alembic
|
||||
async_generator
|
||||
certipy
|
||||
dateutil
|
||||
python-dateutil
|
||||
entrypoints
|
||||
jinja2
|
||||
jupyter-telemetry
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, fetchurl, buildPythonPackage, isPy3k, pycurl, six, rpm, dateutil }:
|
||||
{ lib, fetchurl, buildPythonPackage, isPy3k, pycurl, six, rpm, python-dateutil }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "koji";
|
||||
|
@ -10,7 +10,7 @@ buildPythonPackage rec {
|
|||
sha256 = "0a3kn3qvspvx15imgzzzjsbvw6bqmbk29apbliqwifa9cj7pvb40";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pycurl six rpm dateutil ];
|
||||
propagatedBuildInputs = [ pycurl six rpm python-dateutil ];
|
||||
|
||||
# Judging from SyntaxError
|
||||
disabled = isPy3k;
|
||||
|
|
|
@ -9,7 +9,7 @@ python3Packages.buildPythonApplication rec {
|
|||
sha256 = "1brrik70jyagxa9l0cfmlxvqpilwj1q655bphxnvjxyganxf4c00";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ dateutil future requests beautifulsoup4 ]
|
||||
propagatedBuildInputs = with python3Packages; [ python-dateutil future requests beautifulsoup4 ]
|
||||
++ lib.optional withTwitter python3Packages.twitter
|
||||
;
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ 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
|
||||
, fetchpatch
|
||||
, enableGhostscript ? false, ghostscript, gtk3
|
||||
|
@ -38,7 +38,7 @@ buildPythonPackage rec {
|
|||
++ lib.optional stdenv.isDarwin [ Cocoa ];
|
||||
|
||||
propagatedBuildInputs =
|
||||
[ cycler dateutil nose numpy pyparsing tornado freetype kiwisolver
|
||||
[ cycler python-dateutil nose numpy pyparsing tornado freetype kiwisolver
|
||||
libpng mock pytz ]
|
||||
++ lib.optional (pythonOlder "3.3") backports_functools_lru_cache
|
||||
++ lib.optionals enableGtk3 [ cairo pycairo gtk3 gobject-introspection pygobject3 ]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ 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
|
||||
, certifi, pillow
|
||||
, enableGhostscript ? true, ghostscript, gtk3
|
||||
|
@ -36,7 +36,7 @@ buildPythonPackage rec {
|
|||
++ lib.optional stdenv.isDarwin [ Cocoa ];
|
||||
|
||||
propagatedBuildInputs =
|
||||
[ cycler dateutil numpy pyparsing tornado freetype qhull
|
||||
[ cycler python-dateutil numpy pyparsing tornado freetype qhull
|
||||
kiwisolver certifi libpng mock pytz pillow ]
|
||||
++ lib.optionals enableGtk3 [ cairo pycairo gtk3 gobject-introspection pygobject3 ]
|
||||
++ lib.optionals enableTk [ tcl tk tkinter libX11 ]
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
, isPy27
|
||||
# python dependencies
|
||||
, click
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, etelemetry
|
||||
, filelock
|
||||
, funcsigs
|
||||
|
@ -68,7 +68,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
dateutil
|
||||
python-dateutil
|
||||
etelemetry
|
||||
filelock
|
||||
funcsigs
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
, configparser
|
||||
, cryptography
|
||||
, pyopenssl
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pytz
|
||||
}:
|
||||
|
||||
|
@ -28,7 +28,7 @@ buildPythonPackage rec {
|
|||
'';
|
||||
|
||||
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
|
||||
|
|
|
@ -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 {
|
||||
pname = "OWSLib";
|
||||
version = "0.24.1";
|
||||
|
@ -9,7 +9,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
buildInputs = [ pytest ];
|
||||
propagatedBuildInputs = [ dateutil pyproj pytz requests pyyaml ];
|
||||
propagatedBuildInputs = [ python-dateutil pyproj pytz requests pyyaml ];
|
||||
|
||||
# 'tests' dir not included in pypy distribution archive.
|
||||
doCheck = false;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
, pytest
|
||||
, glibcLocales
|
||||
, cython
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, scipy
|
||||
, moto
|
||||
, numexpr
|
||||
|
@ -41,7 +41,7 @@ buildPythonPackage rec {
|
|||
nativeBuildInputs = [ cython ];
|
||||
buildInputs = lib.optional stdenv.isDarwin libcxx;
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
scipy
|
||||
numexpr
|
||||
pytz
|
||||
|
@ -68,7 +68,7 @@ buildPythonPackage rec {
|
|||
|
||||
|
||||
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
|
||||
"test_fallback_plural"
|
||||
"test_ambiguous_flags"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
, beautifulsoup4
|
||||
, bottleneck
|
||||
, cython
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, html5lib
|
||||
, jinja2
|
||||
, lxml
|
||||
|
@ -47,7 +47,7 @@ buildPythonPackage rec {
|
|||
propagatedBuildInputs = [
|
||||
beautifulsoup4
|
||||
bottleneck
|
||||
dateutil
|
||||
python-dateutil
|
||||
html5lib
|
||||
numexpr
|
||||
lxml
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, isPy27
|
||||
, glibcLocales, git
|
||||
, 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 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -44,7 +44,7 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
jinja2 pygments docutils pytz unidecode six dateutil feedgenerator
|
||||
jinja2 pygments docutils pytz unidecode six python-dateutil feedgenerator
|
||||
blinker pillow beautifulsoup4 markupsafe lxml
|
||||
];
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ lib, fetchPypi, buildPythonPackage, pythonOlder
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, importlib-metadata
|
||||
, poetry
|
||||
, poetry-core
|
||||
|
@ -22,7 +22,7 @@ buildPythonPackage rec {
|
|||
'';
|
||||
|
||||
nativeBuildInputs = [ poetry-core ];
|
||||
propagatedBuildInputs = [ dateutil pytzdata ]
|
||||
propagatedBuildInputs = [ python-dateutil pytzdata ]
|
||||
++ lib.optional (pythonOlder "3.5") typing
|
||||
++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
|
||||
|
||||
|
|
|
@ -6,15 +6,16 @@
|
|||
|
||||
import ../pillow/generic.nix (rec {
|
||||
pname = "Pillow-SIMD";
|
||||
version = "8.1.2";
|
||||
|
||||
# check for release version on https://pypi.org/project/Pillow-SIMD/#history
|
||||
# does not match the latest pillow release version!
|
||||
version = "7.0.0.post3";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "uploadcare";
|
||||
repo = "pillow-simd";
|
||||
rev = version;
|
||||
sha256 = "1z0c1qpx7l1bhj71ww7za7kl29j5wdraqr2pdhv4dp1q74kgrr0m";
|
||||
rev = "v${version}";
|
||||
sha256 = "1h832xp1bzf951hr4dmjmxqfsv28sx9lr2cq96qdz1c72k40zj1h";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
, fetchPypi
|
||||
, lxml
|
||||
, networkx
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, rdflib
|
||||
, pydot
|
||||
}:
|
||||
|
@ -20,7 +20,7 @@ buildPythonPackage rec {
|
|||
propagatedBuildInputs = [
|
||||
lxml
|
||||
networkx
|
||||
dateutil
|
||||
python-dateutil
|
||||
rdflib
|
||||
];
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
, psutil
|
||||
, pyelftools
|
||||
, pyserial
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, requests
|
||||
, rpyc
|
||||
, tox
|
||||
|
@ -63,7 +63,7 @@ buildPythonPackage rec {
|
|||
psutil
|
||||
pyelftools
|
||||
pyserial
|
||||
dateutil
|
||||
python-dateutil
|
||||
requests
|
||||
rpyc
|
||||
tox
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, fetchPypi, buildPythonPackage, numpy, dateutil }:
|
||||
{ lib, fetchPypi, buildPythonPackage, numpy, python-dateutil }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pycollada";
|
||||
|
@ -9,7 +9,7 @@ buildPythonPackage rec {
|
|||
sha256 = "1rp4wlvfywgk3v6l3hnhjx61x9yqawvvivpq4dig2jj71k3mpsyj";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ numpy dateutil ];
|
||||
propagatedBuildInputs = [ numpy python-dateutil ];
|
||||
|
||||
# Some tests fail because they refer to test data files that don't exist
|
||||
# (upstream packaging issue)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
, pythonOlder
|
||||
, fetchPypi
|
||||
, aiohttp
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -20,7 +20,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
dateutil
|
||||
python-dateutil
|
||||
];
|
||||
|
||||
# no tests implemented
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ lib, fetchFromGitHub, buildPythonPackage
|
||||
, lxml, pycryptodomex, construct
|
||||
, argon2_cffi, dateutil, future
|
||||
, argon2_cffi, python-dateutil, future
|
||||
, python
|
||||
}:
|
||||
|
||||
|
@ -21,7 +21,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
lxml pycryptodomex construct
|
||||
argon2_cffi dateutil future
|
||||
argon2_cffi python-dateutil future
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, docopt
|
||||
, fetchPypi
|
||||
, pytestCheckHook
|
||||
|
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dateutil
|
||||
python-dateutil
|
||||
docopt
|
||||
pyyaml
|
||||
ruamel-yaml
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pkgs
|
||||
}:
|
||||
|
||||
|
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
buildInputs = [ pkgs.coreutils ];
|
||||
propagatedBuildInputs = [ dateutil ];
|
||||
propagatedBuildInputs = [ python-dateutil ];
|
||||
|
||||
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
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
, fetchFromGitHub
|
||||
, substituteAll
|
||||
, xmlsec
|
||||
, cryptography, defusedxml, pyopenssl, dateutil, pytz, requests, six
|
||||
, cryptography, defusedxml, pyopenssl, python-dateutil, pytz, requests, six
|
||||
, mock, pyasn1, pymongo, pytest, responses, xmlschema, importlib-resources
|
||||
}:
|
||||
|
||||
|
@ -36,7 +36,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
cryptography
|
||||
dateutil
|
||||
python-dateutil
|
||||
defusedxml
|
||||
importlib-resources
|
||||
pyopenssl
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
, pythonOlder
|
||||
, pybind11
|
||||
, pytestCheckHook
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, doxygen
|
||||
, python
|
||||
, pelican
|
||||
|
@ -28,7 +28,7 @@ buildPythonPackage rec {
|
|||
checkInputs = [
|
||||
pytestCheckHook
|
||||
|
||||
dateutil
|
||||
python-dateutil
|
||||
doxygen
|
||||
python
|
||||
pelican
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
, pyfiglet
|
||||
, requests
|
||||
, arrow
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, pysocks
|
||||
, pocket
|
||||
}:
|
||||
|
@ -42,7 +42,7 @@ buildPythonPackage rec {
|
|||
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; {
|
||||
description = "Streaming command-line twitter client";
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
, pkgs
|
||||
, cython
|
||||
, dnspython
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, xcaplib
|
||||
, msrplib
|
||||
, lxml
|
||||
|
@ -34,7 +34,7 @@ buildPythonPackage rec {
|
|||
|
||||
nativeBuildInputs = [ pkgs.pkg-config ];
|
||||
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; {
|
||||
description = "SIP SIMPLE implementation for Python";
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ lib, fetchPypi, buildPythonPackage
|
||||
, 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 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -30,7 +30,7 @@ buildPythonPackage rec {
|
|||
pyodbc
|
||||
pytest
|
||||
pymysql
|
||||
dateutil
|
||||
python-dateutil
|
||||
docutils
|
||||
flexmock
|
||||
psycopg2
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
, mechanize
|
||||
, beautifulsoup4
|
||||
, pyxdg
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, requests
|
||||
, httpretty
|
||||
}:
|
||||
|
@ -24,7 +24,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
django suds-jurko ldap mechanize beautifulsoup4 pyxdg dateutil requests
|
||||
django suds-jurko ldap mechanize beautifulsoup4 pyxdg python-dateutil requests
|
||||
];
|
||||
|
||||
buildInputs = [ httpretty ];
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
, nose
|
||||
, tox
|
||||
, six
|
||||
, dateutil
|
||||
, python-dateutil
|
||||
, kitchen
|
||||
, pytz
|
||||
, pkgs
|
||||
|
@ -29,7 +29,7 @@ buildPythonPackage rec {
|
|||
doCheck = false;
|
||||
|
||||
buildInputs = [ nose pkgs.taskwarrior tox ];
|
||||
propagatedBuildInputs = [ six dateutil kitchen pytz ];
|
||||
propagatedBuildInputs = [ six python-dateutil kitchen pytz ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/ralphbean/taskw";
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue