3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.pulsectl: 21.3.4 -> 21.5.0

This commit is contained in:
Martin Weinelt 2021-05-09 02:56:20 +02:00 committed by Jonathan Ringer
parent 36c5cea0f6
commit dfa9e91b11

View file

@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "pulsectl";
version = "21.3.4";
version = "21.5.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-+qi5M2I3VlmQKY8ghw4T3RZ4pFhoR8paf/Kr8QdS81Y=";
sha256 = "11dw8hij1vzqawlv5l1ax6i2zw6p4ccn4ww3v6q1kdmrwk46vi7r";
};
patches = [
@ -17,7 +17,12 @@ buildPythonPackage rec {
})
];
pythonImportsCheck = [
"pulsectl"
];
checkInputs = [ pulseaudio ];
checkPhase = ''
${python.interpreter} -m unittest pulsectl.tests.all
'';