1{ stdenv, buildPythonPackage, fetchPypi }: 2 3 4buildPythonPackage rec { 5 6 pname = "versioneer"; 7 version = "0.18"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "0dgkzg1r7mjg91xp81sv9z4mabyxl39pkd11jlc1200md20zglga"; 12 }; 13 14 # Couldn't get tests to work because, for instance, they used virtualenv and 15 # pip. 16 doCheck = false; 17 18 meta = with stdenv.lib; { 19 description = "Version-string management for VCS-controlled trees"; 20 homepage = https://github.com/warner/python-versioneer; 21 license = licenses.publicDomain; 22 maintainers = with maintainers; [ jluttine ]; 23 }; 24 25}