Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi, pip, pytest }: 2 3buildPythonPackage rec { 4 pname = "setuptools_scm"; 5 version = "4.1.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "a8994582e716ec690f33fec70cca0f85bd23ec974e3f783233e4879090a7faa8"; 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}