mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #55670 from dotlambda/dateparser-0.7.1
python.pkgs.dateparser: 0.7.0 -> 0.7.1
This commit is contained in:
commit
b0e2f24050
4 changed files with 12 additions and 15 deletions
|
@ -14,11 +14,11 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "dateparser";
|
||||
version = "0.7.0";
|
||||
version = "0.7.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "940828183c937bcec530753211b70f673c0a9aab831e43273489b310538dff86";
|
||||
sha256 = "42d51be54e74a8e80a4d76d1fa6e4edd997098fce24ad2d94a2eab5ef247193e";
|
||||
};
|
||||
|
||||
checkInputs = [ nose mock parameterized six glibcLocales ];
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
# dateparser tests fail on pyton37: https://github.com/NixOS/nixpkgs/issues/52766
|
||||
{ lib, python36, glibcLocales }:
|
||||
{ lib, python3, glibcLocales }:
|
||||
|
||||
python36.pkgs.buildPythonApplication rec {
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "homeassistant-cli";
|
||||
version = "0.5.0";
|
||||
|
||||
src = python36.pkgs.fetchPypi {
|
||||
src = python3.pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "4ad137d336508ab74840a34b3cc488ad884cc75285f5d7842544df1c3adacf8d";
|
||||
};
|
||||
|
@ -19,7 +18,7 @@ python36.pkgs.buildPythonApplication rec {
|
|||
glibcLocales
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python36.pkgs; [
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
requests netdisco click click-log tabulate jsonpath_rw jinja2 dateparser regex ruamel_yaml aiohttp
|
||||
];
|
||||
|
||||
|
@ -31,7 +30,7 @@ python36.pkgs.buildPythonApplication rec {
|
|||
$out/bin/hass-cli completion zsh > "$out/share/zsh/site-functions/_hass-cli"
|
||||
'';
|
||||
|
||||
checkInputs = with python36.pkgs; [
|
||||
checkInputs = with python3.pkgs; [
|
||||
pytest requests-mock
|
||||
];
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{ lib, fetchFromGitHub, fetchpatch
|
||||
, python36, xdg_utils
|
||||
, python3, xdg_utils
|
||||
}:
|
||||
|
||||
python36.pkgs.buildPythonApplication rec {
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "papis";
|
||||
version = "0.7.5";
|
||||
|
||||
|
@ -20,7 +20,7 @@ python36.pkgs.buildPythonApplication rec {
|
|||
sha256 = "0cmagfdaaml1pxhnxggifpb47z5g1p231qywnvnqpd3dm93382w1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python36.pkgs; [
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
click requests filetype pyparsing configparser
|
||||
arxiv2bib pyyaml chardet beautifulsoup4 prompt_toolkit
|
||||
bibtexparser python-slugify pyparser pylibgen
|
||||
|
@ -33,7 +33,7 @@ python36.pkgs.buildPythonApplication rec {
|
|||
install -Dt "$out/etc/bash_completion.d" scripts/shell_completion/build/bash/papis
|
||||
'';
|
||||
|
||||
checkInputs = (with python36.pkgs; [
|
||||
checkInputs = (with python3.pkgs; [
|
||||
pytest
|
||||
]) ++ [
|
||||
xdg_utils
|
||||
|
|
|
@ -1791,9 +1791,7 @@ in
|
|||
|
||||
burp = callPackage ../tools/backup/burp { };
|
||||
|
||||
buku = callPackage ../applications/misc/buku {
|
||||
python3 = python36; # due to #52766
|
||||
};
|
||||
buku = callPackage ../applications/misc/buku { };
|
||||
|
||||
byzanz = callPackage ../applications/video/byzanz {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue