python-packages: minor fixes for NixOS 25.11

This commit is contained in:
Erik Arvstedt
2025-12-23 10:45:43 +01:00
parent 54651163ba
commit 974f29b516
7 changed files with 10 additions and 5 deletions
@@ -2,19 +2,20 @@
# but without Python 2 support
{ lib, buildPythonPackage, fetchPypi,
six, txaio, twisted, zope_interface, cffi,
six, txaio, twisted, zope-interface, cffi,
mock, pytest, cryptography, pynacl
}:
buildPythonPackage rec {
pname = "autobahn";
version = "20.12.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "15b8zm7jalwisfwc08szxy3bh2bnn0hd41dbsnswi0lqwbh962j1";
};
propagatedBuildInputs = [ six txaio twisted zope_interface cffi cryptography pynacl ];
propagatedBuildInputs = [ six txaio twisted zope-interface cffi cryptography pynacl ];
checkInputs = [ mock pytest ];
checkPhase = ''