Merge pull request #124553 from fabaff/bump-soco
python3Packages.soco: 0.21.2 -> 0.22.3
This commit is contained in:
commit
b25951fb2f
1 changed files with 8 additions and 34 deletions
|
@ -1,58 +1,32 @@
|
|||
{ buildPythonPackage
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, graphviz
|
||||
, ifaddr
|
||||
, isPy27
|
||||
, lib
|
||||
, pythonOlder
|
||||
, mock
|
||||
, nix-update-script
|
||||
, pytestCheckHook
|
||||
, requests
|
||||
, requests-mock
|
||||
, sphinx
|
||||
, sphinx_rtd_theme
|
||||
, toml
|
||||
, xmltodict
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "soco";
|
||||
version = "0.21.2";
|
||||
disabled = isPy27;
|
||||
version = "0.22.3";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
# N.B. We fetch from GitHub because the PyPI tarball doesn't contain the
|
||||
# required files to run the tests.
|
||||
src = fetchFromGitHub {
|
||||
owner = "SoCo";
|
||||
repo = "SoCo";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-CCgkzUkt9YqTJt9tPBLmYXW6ZuRoMDd7xahYmNXgfM0=";
|
||||
sha256 = "sha256-RCWXXk5aQQYqyxm65M96XBoMS5UlYqyAz3aM/DVghRw=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
url = "https://patch-diff.githubusercontent.com/raw/SoCo/SoCo/pull/811.patch";
|
||||
sha256 = "sha256-GBd74c8zc25ROO411SZ9TTa+bi8yXJaaOQqY9FM1qj4=";
|
||||
})
|
||||
];
|
||||
|
||||
# N.B. These exist because:
|
||||
# 1. Upstream's pinning isn't well maintained, leaving dependency versions no
|
||||
# longer in nixpkgs.
|
||||
# 2. There is no benefit for us to be running linting and coverage tests.
|
||||
postPatch = ''
|
||||
sed -i "/black/d" ./requirements-dev.txt
|
||||
sed -i "/coveralls/d" ./requirements-dev.txt
|
||||
sed -i "/flake8/d" ./requirements-dev.txt
|
||||
sed -i "/pylint/d" ./requirements-dev.txt
|
||||
sed -i "/pytest-cov/d" ./requirements-dev.txt
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ifaddr
|
||||
requests
|
||||
toml
|
||||
xmltodict
|
||||
];
|
||||
|
||||
|
@ -61,10 +35,10 @@ buildPythonPackage rec {
|
|||
graphviz
|
||||
mock
|
||||
requests-mock
|
||||
sphinx
|
||||
sphinx_rtd_theme
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "soco" ];
|
||||
|
||||
passthru.updateScript = nix-update-script {
|
||||
attrPath = "python3Packages.${pname}";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue