567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
43 lines
778 B
Nix
43 lines
778 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "attrs";
|
|
version = "21.4.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-YmuoI0IR25joad92IwoTfExAoS1yRFxF1fW3FvB24v0=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"testout"
|
|
];
|
|
|
|
postInstall = ''
|
|
# Install tests as the tests output.
|
|
mkdir $testout
|
|
cp -R tests $testout/tests
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"attr"
|
|
];
|
|
|
|
# pytest depends on attrs, so we can't do this out-of-the-box.
|
|
# Instead, we do this as a passthru.tests test.
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Python attributes without boilerplate";
|
|
homepage = "https://github.com/hynek/attrs";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|