python3Packages.attrs: 21.2.0 -> 21.4.0

authored by

Fabian Affolter and committed by
Jonathan Ringer
c6f7ec4c fec8555f

+10 -4
+10 -4
pkgs/development/python-modules/attrs/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "attrs"; 9 - version = "21.2.0"; 9 + version = "21.4.0"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb"; 13 + hash = "sha256-YmuoI0IR25joad92IwoTfExAoS1yRFxF1fW3FvB24v0="; 14 14 }; 15 15 16 - outputs = [ "out" "testout" ]; 16 + outputs = [ 17 + "out" 18 + "testout" 19 + ]; 17 20 18 21 postInstall = '' 19 22 # Install tests as the tests output. ··· 21 24 cp -R tests $testout/tests 22 25 ''; 23 26 24 - pythonImportsCheck = [ "attr" ]; 27 + pythonImportsCheck = [ 28 + "attr" 29 + ]; 25 30 26 31 # pytest depends on attrs, so we can't do this out-of-the-box. 27 32 # Instead, we do this as a passthru.tests test. ··· 35 40 description = "Python attributes without boilerplate"; 36 41 homepage = "https://github.com/hynek/attrs"; 37 42 license = licenses.mit; 43 + maintainers = with maintainers; [ ]; 38 44 }; 39 45 }