Merge pull request #178638 from SuperSandro2000/pyld

python310Packages.pyld: normalise attr

authored by

Sandro and committed by
GitHub
552c48b3 926d977a

+4 -3
+2 -2
pkgs/development/python-modules/PyLD/default.nix pkgs/development/python-modules/pyld/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, python, requests, gnugrep }: 2 3 let 4 ··· 38 ok_min=401 39 40 if ! ${python.interpreter} tests/runtests.py -d ${json-ld}/test-suite 2>&1 | tee test.out; then 41 - ok_count=$(${gnugrep}/bin/grep -F '... ok' test.out | wc -l) 42 if [[ $ok_count -lt $ok_min ]]; then 43 echo "Less than $ok_min tests passed ($ok_count). Failing the build." 44 exit 1
··· 1 + { lib, buildPythonPackage, fetchFromGitHub, python, requests }: 2 3 let 4 ··· 38 ok_min=401 39 40 if ! ${python.interpreter} tests/runtests.py -d ${json-ld}/test-suite 2>&1 | tee test.out; then 41 + ok_count=$(grep -F '... ok' test.out | wc -l) 42 if [[ $ok_count -lt $ok_min ]]; then 43 echo "Less than $ok_min tests passed ($ok_count). Failing the build." 44 exit 1
+1
pkgs/top-level/python-aliases.nix
··· 117 pycryptodome-test-vectors = throw "pycryptodome-test-vectors has been removed because it is an internal package to pycryptodome"; # added 2022-05-28 118 pyialarmxr = pyialarmxr-homeassistant; # added 2022-06-07 119 pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20 120 pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0 121 pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04 122 pyreadability = readability-lxml; # added 2022-05-24
··· 117 pycryptodome-test-vectors = throw "pycryptodome-test-vectors has been removed because it is an internal package to pycryptodome"; # added 2022-05-28 118 pyialarmxr = pyialarmxr-homeassistant; # added 2022-06-07 119 pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20 120 + PyLD = pyld; # added 2022-06-22 121 pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0 122 pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04 123 pyreadability = readability-lxml; # added 2022-05-24
+1 -1
pkgs/top-level/python-packages.nix
··· 7552 7553 pylaunches = callPackage ../development/python-modules/pylaunches { }; 7554 7555 - PyLD = callPackage ../development/python-modules/PyLD { }; 7556 7557 pylev = callPackage ../development/python-modules/pylev { }; 7558
··· 7552 7553 pylaunches = callPackage ../development/python-modules/pylaunches { }; 7554 7555 + pyld = callPackage ../development/python-modules/pyld { }; 7556 7557 pylev = callPackage ../development/python-modules/pylev { }; 7558