nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

kaitaistruct: refactor

and replace unsupported dontCheck with doCheck attribute

+5 -3
+5 -3
pkgs/development/python-modules/kaitaistruct/default.nix
··· 5 5 fetchFromGitHub, 6 6 brotli, 7 7 lz4, 8 + setuptools, 8 9 }: 9 10 10 11 let ··· 19 18 buildPythonPackage rec { 20 19 pname = "kaitaistruct"; 21 20 version = "0.10"; 22 - format = "setuptools"; 21 + pyproject = true; 23 22 24 23 src = fetchPypi { 25 24 inherit pname version; ··· 31 30 sed '32ipackages = kaitai/compress' -i setup.cfg 32 31 ''; 33 32 33 + build-system = [ setuptools ]; 34 + 34 35 propagatedBuildInputs = [ 35 36 brotli 36 37 lz4 37 38 ]; 38 39 39 - # no tests 40 - dontCheck = true; 40 + doCheck = false; # no tests in upstream 41 41 42 42 pythonImportsCheck = [ 43 43 "kaitaistruct"