Skip to content
Snippets Groups Projects
Unverified Commit 739a148c authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Give git and the git metadata to the nix packaging process

versioneer needs both of these
parent bf5ea05e
Branches
No related tags found
1 merge request!88Expose ZKAPAuthorizer version information
{ lib { lib
, buildPythonPackage, sphinx , buildPythonPackage, sphinx, git
, attrs, zope_interface, aniso8601, twisted, tahoe-lafs, privacypass, treq , attrs, zope_interface, aniso8601, twisted, tahoe-lafs, privacypass, treq
, fixtures, testtools, hypothesis, pyflakes, coverage , fixtures, testtools, hypothesis, pyflakes, coverage
, hypothesisProfile ? null , hypothesisProfile ? null
...@@ -18,11 +18,12 @@ buildPythonPackage rec { ...@@ -18,11 +18,12 @@ buildPythonPackage rec {
version = "0.0"; version = "0.0";
pname = "zero-knowledge-access-pass-authorizer"; pname = "zero-knowledge-access-pass-authorizer";
name = "${pname}-${version}"; name = "${pname}-${version}";
src = lib.cleanSource ./.; src = ./.;
outputs = [ "out" ] ++ (if collectCoverage then [ "doc" ] else [ ]); outputs = [ "out" ] ++ (if collectCoverage then [ "doc" ] else [ ]);
depsBuildBuild = [ depsBuildBuild = [
git
sphinx sphinx
]; ];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment