Merge pull request #178638 from SuperSandro2000/pyld

python310Packages.pyld: normalise attr
main
Sandro 2 years ago committed by GitHub
commit 552c48b337
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      pkgs/development/python-modules/pyld/default.nix
  2. 1
      pkgs/top-level/python-aliases.nix
  3. 2
      pkgs/top-level/python-packages.nix

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchFromGitHub, python, requests, gnugrep }:
{ lib, buildPythonPackage, fetchFromGitHub, python, requests }:
let
@ -38,7 +38,7 @@ buildPythonPackage rec {
ok_min=401
if ! ${python.interpreter} tests/runtests.py -d ${json-ld}/test-suite 2>&1 | tee test.out; then
ok_count=$(${gnugrep}/bin/grep -F '... ok' test.out | wc -l)
ok_count=$(grep -F '... ok' test.out | wc -l)
if [[ $ok_count -lt $ok_min ]]; then
echo "Less than $ok_min tests passed ($ok_count). Failing the build."
exit 1

@ -117,6 +117,7 @@ mapAliases ({
pycryptodome-test-vectors = throw "pycryptodome-test-vectors has been removed because it is an internal package to pycryptodome"; # added 2022-05-28
pyialarmxr = pyialarmxr-homeassistant; # added 2022-06-07
pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20
PyLD = pyld; # added 2022-06-22
pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0
pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
pyreadability = readability-lxml; # added 2022-05-24

@ -7552,7 +7552,7 @@ in {
pylaunches = callPackage ../development/python-modules/pylaunches { };
PyLD = callPackage ../development/python-modules/PyLD { };
pyld = callPackage ../development/python-modules/pyld { };
pylev = callPackage ../development/python-modules/pylev { };

Loading…
Cancel
Save