depot/third_party/nixpkgs/pkgs/development/python-modules/attrs/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

60 lines
1.2 KiB
Nix

{
lib,
callPackage,
buildPythonPackage,
fetchPypi,
pythonOlder,
hatchling,
}:
buildPythonPackage rec {
pname = "attrs";
version = "23.2.0";
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-k13DtSnCYvbPduUId9NaS9PB3hlP1B9HoreujxmXHzA=";
};
patches = [
# hatch-vcs and hatch-fancy-pypi-readme depend on pytest, which depends on attrs
./remove-hatch-plugins.patch
];
postPatch = ''
substituteAllInPlace pyproject.toml
'';
nativeBuildInputs = [ hatchling ];
outputs = [
"out"
"testout"
];
postInstall = ''
# Install tests as the tests output.
mkdir $testout
cp -R conftest.py tests $testout
'';
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;
passthru.tests = {
pytest = callPackage ./tests.nix { };
};
meta = with lib; {
description = "Python attributes without boilerplate";
homepage = "https://github.com/python-attrs/attrs";
changelog = "https://github.com/python-attrs/attrs/releases/tag/${version}";
license = licenses.mit;
maintainers = [ ];
};
}