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