python310Packages.distlib: remove unnecessary and unreproducible exe's
dates are embedded
arch does the same thing
4858f1493d/trunk/PKGBUILD (L22)
This commit is contained in:
parent
45dc78cb0a
commit
68ee8c7d39
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools
|
||||
|
@ -18,6 +19,10 @@ buildPythonPackage rec {
|
|||
setuptools
|
||||
];
|
||||
|
||||
postFixup = lib.optionalString (!stdenv.targetPlatform.isWindows) ''
|
||||
find $out -name '*.exe' -delete
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [
|
||||
"distlib"
|
||||
"distlib.database"
|
||||
|
@ -39,4 +44,3 @@ buildPythonPackage rec {
|
|||
maintainers = with maintainers; [ lnl7 ];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue