Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 21 lines 573 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, pip, pytest }: 2 3buildPythonPackage rec { 4 pname = "setuptools_scm"; 5 version = "3.4.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "26b8a108783cd88f4b15ff1f0f347d6b476db25d0c226159b835d713f9487320"; 10 }; 11 12 # Requires pytest, circular dependency 13 doCheck = false; 14 15 meta = with stdenv.lib; { 16 homepage = https://bitbucket.org/pypa/setuptools_scm/; 17 description = "Handles managing your python package versions in scm metadata"; 18 license = licenses.mit; 19 maintainers = with maintainers; [ ]; 20 }; 21}