1{ stdenv, buildPythonPackage, fetchPypi, pip }:
2
3buildPythonPackage rec {
4 pname = "setuptools_scm";
5 version = "3.3.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "19cyndx23xmpbhz4qrwmfwsmnnaczd0dw7qg977ksq2dbvxy29dx";
10 };
11
12 # Seems to fail due to chroot and would cause circular dependency
13 # with pytest
14 doCheck = false;
15
16 meta = with stdenv.lib; {
17 homepage = https://bitbucket.org/pypa/setuptools_scm/;
18 description = "Handles managing your python package versions in scm metadata";
19 license = licenses.mit;
20 maintainers = with maintainers; [ ];
21 };
22}